forked from atveit/amplitude-python
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
23 lines (22 loc) · 802 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(
name='amplitude-python',
keywords='python wrapper for amplitude.com HTTP API',
version='0.12',
packages=find_packages(),
long_description=open('README.txt').read(),
test_suite='nose.collector',
tests_require=['nose'],
install_requires=['requests','nose','requests-mock[fixture]','testtools','twine'],
url='https://github.com/atveit/amplitude-python',
author='Amund Tveit',
author_email='[email protected]',
license='Apache License 2.0',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: System :: Logging',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
],
)