-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·31 lines (27 loc) · 906 Bytes
/
setup.py
File metadata and controls
executable file
·31 lines (27 loc) · 906 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
setup(
name='python-callfire',
version='0.10.0',
description='CallFire API thin wrapper.',
long_description=readme,
url='https://github.com/alexanderad/python-callfire',
license='MIT',
author='iMedicare Team',
author_email='devops@imedicare.com',
install_requires=['six'],
tests_require=['nose', 'flexmock'],
test_suite='tests',
packages=find_packages(exclude=('tests', 'swagger', '.travis.yml')),
package_data={'': ['LICENSE']},
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
),
)