forked from segmentio/analytics-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (26 loc) · 988 Bytes
/
setup.py
File metadata and controls
31 lines (26 loc) · 988 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
31
from analytics import VERSION
from distutils.core import setup
long_description = '''
Segment.io is the simplest way to integrate analytics into your application.
One API allows you to turn on any other analytics service. No more learning
new APIs, repeated code, and wasted development time.
This is the official python client that wraps the Segment.io REST API (https://segment.io).
Documentation and more details at https://github.com/segmentio/analytics-python
'''
setup(
name='analytics-python',
version=VERSION,
url='https://github.com/segmentio/analytics-python',
author='Ilya Volodarsky',
maintainer='Segment.io',
packages=['analytics'],
license='MIT License',
install_requires=[
'requests',
'python-dateutil'
],
description='The hassle-free way to integrate analytics into any python application.',
long_description=long_description
)