-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
53 lines (45 loc) · 1.45 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
from setuptools import setup
import os
import re
base_path = os.path.dirname(__file__)
fp = open(os.path.join(base_path, 'KISSmetrics', '__init__.py'))
VERSION = re.compile(r".*__version__ = '(.*?)'",
re.S).match(fp.read()).group(1)
fp.close()
version = VERSION
def read(fname):
try:
path = os.path.join(os.path.dirname(__file__), fname)
return open(path).read()
except IOError:
return ""
requirements = ['urllib3>=1.2,<2.0']
test_requirements = ['pytest',
'pytest-cov']
setup(
name='py-KISSmetrics',
version=version,
license='MIT',
description="Official KISSmetrics client library.",
long_description=read('DESCRIPTION.rst'),
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries',
],
keywords='',
author='Ernest W. Durbin III',
author_email='[email protected]',
url='https://github.com/kissmetrics/py-KISSmetrics/',
packages=['KISSmetrics'],
test_suite='KISSmetrics.tests',
install_requires=requirements,
tests_require=test_requirements,
)