This repository was archived by the owner on Apr 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (39 loc) · 1.3 KB
/
setup.py
File metadata and controls
40 lines (39 loc) · 1.3 KB
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
from setuptools import find_packages, setup
setup(
name='hpdr',
packages=find_packages(),
version='1.0.0',
description='Hive date ranges simplified.',
author='Mark Libucha',
author_email='mlibucha@gmail.com',
url='http://hpdr.readthedocs.io/en/latest/',
license='Apache 2.0',
setup_requires=['pytest-runner'],
tests_require=['pytest'],
test_suite='test',
zip_safe=False,
classifiers=(
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython'
),
install_requires=[
"attrs>=16.1.0, <17.0.0",
"enum34>=1.1.6, <2.0.0",
"funcparserlib>=0.3.6, <1.0.0",
"future>=0.15.2, <1.0.0",
"pendulum>=0.5.5, <1.0.0",
"pytest>=3.0.2, <4.0.0",
"python-dateutil>=2.5.3, <3.0.0",
"pytz>=2016.6.1, <2017.0.0",
"six>=1.10.0, <2.0.0",
"tabulate>=0.7.5, <2.0.0"
]
)