-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (48 loc) · 1.56 KB
/
setup.py
File metadata and controls
55 lines (48 loc) · 1.56 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
"""Setup for the dhutil package."""
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
import versioneer
README_RST = ''
with open('README.rst') as f:
README_RST = f.read()
INSTALL_REQUIRES = [
'pymongo', 'click', 'mailchimp3', 'tqdm', 'gspread', 'oauth2client', 'mongozen'
]
TEST_REQUIRES = ['pytest', 'coverage', 'pytest-cov']
setuptools.setup(
name='dhutil',
description=("Python utilities for DataHack."),
long_description=README_RST,
author="Shay Palachy",
author_email="shaypal5@gmail.com",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
url='https://github.com/DataHackIL/dhutil',
license="MIT",
packages=setuptools.find_packages(),
entry_points='''
[console_scripts]
dhutil=dhutil.scripts.dhutil_cli:cli
''',
install_requires=INSTALL_REQUIRES,
extras_require={
'test': TEST_REQUIRES
},
setup_requires=INSTALL_REQUIRES,
platforms=['any'],
keywords='python datahack',
classifiers=[
# Trove classifiers
# (https://pypi.python.org/pypi?%3Aaction=list_classifiers)
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
],
)