-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathsetup.py
28 lines (25 loc) · 898 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
#!/usr/bin/env python
from distutils.core import setup
setup(
name = 'KISSmetrics',
packages = ['KISSmetrics'],
version = '0.1.0',
description = 'Python client for KISSmetrics',
long_description = 'Python client for KISSmetrics',
url = 'http://github.com/kissmetrics/KISSmetrics',
author = 'kissmetrics',
author_email = '[email protected]',
maintainer = 'kissmetrics',
maintainer_email = '[email protected]',
keywords = ['kissmetrics'],
license = 'Apache Software License',
classifiers=[
'Programming Language :: Python',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires = [],
)