forked from aavnsh/mixpanel_api3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (23 loc) · 1.03 KB
/
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
import setuptools
from distutils.core import setup
setup(
name='mixpanel-api3',
packages=['mixpanel_api'],
version='0.2.1',
description='Python3 Version of mixpanel-api. A utilities-only module for exporting and importing data into Mixpanel via their APIs. This is NOT for server-side app tracking.',
long_description='Python3 Version of mixpanel-api. A utilities-only module for exporting and importing data into Mixpanel via their APIs. This is NOT for server-side app tracking.',
author='Avinash Anand',
url='https://github.com/aavnsh/mixpanel_api3',
keywords=['mixpanel', 'utilities', 'python3'],
classifiers=[
# Trove classifiers
# Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
],
)