-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 745 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(
name='python-bandsintown',
version='.'.join(map(str, __import__('bandsintown').__version__)),
description='Simple Python client for the Bandsintown API',
keywords='bandsintown api client tour dates',
author='Chris Forrette',
author_email='chris@chrisforrette.com',
url='https://github.com/chrisforrette/python-bandsintown',
packages=find_packages(),
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
],
license='MIT',
install_requires=['requests<3'],
)