-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
29 lines (27 loc) · 912 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
24
25
26
27
28
29
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os
long_description = 'Python library for using Mixpanel asynchronously. For more info, visit http://github.com/jessepollak/mixpanel-python-async.'
if os.path.exists('README.txt'):
long_description = open('README.txt').read()
setup(
name='mixpanel-py-async',
version='0.3.0',
author='Jesse Pollak',
author_email='[email protected]',
packages=['mixpanel_async'],
url='https://github.com/jessepollak/mixpanel-python-async',
description='Python library for using Mixpanel asynchronously',
long_description=long_description,
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
test_suite='tests',
install_requires=[
'mixpanel'
]
)