-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
110 lines (93 loc) · 2.64 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# This file is part of the Reference Data Repository (refdata).
#
# Copyright (C) 2021 New York University.
#
# refdata is free software; you can redistribute it and/or modify it under the
# terms of the MIT License; see LICENSE file for more details.
"""Required packages for install, test, docs, and tests."""
import os
import re
from setuptools import setup, find_packages
install_requires = [
'future',
'appdirs>=1.4.4',
'pandas>=1.0.0',
'python-dateutil',
'datasize>=1.0.0',
'pyyaml>=5.1',
'jsonschema',
'SQLAlchemy>=1.3.18',
'pooch>=1.3.0',
'requests',
'Click>=7.0.0',
'tableprint'
]
tests_require = [
'coverage>=5.0',
'pytest',
'pytest-cov'
]
dev_require = [
'flake8',
'python-language-server',
'mypy',
'pylint',
'pydocstyle'
]
extras_require = {
'docs': [
'Sphinx',
'sphinx-rtd-theme',
'sphinxcontrib-apidoc',
'jupyter-sphinx',
'nbshpinx',
'nbsphinx-link'
],
'tests': tests_require,
'dev': dev_require + tests_require
}
# Get the version string from the version.py file in the refdata package.
# Based on:
# https://stackoverflow.com/questions/458550
with open(os.path.join('refdata', 'version.py'), 'rt') as f:
filecontent = f.read()
match = re.search(r"^__version__\s*=\s*['\"]([^'\"]*)['\"]", filecontent, re.M)
if match is not None:
version = match.group(1)
else:
raise RuntimeError('unable to find version string in %s.' % (filecontent,))
# Get long project description text from the README.rst file
with open('README.rst', 'rt') as f:
readme = f.read()
setup(
name='refdata',
version=version,
description='Library for accessing the Reference Data Repository',
long_description=readme,
long_description_content_type='text/x-rst',
keywords='data curation',
url='https://github.com/VIDA-NYU/reference-data-repository',
author='Heiko Mueller',
author_email='[email protected]',
license='MIT',
license_file='LICENSE',
packages=find_packages(exclude=('tests',)),
include_package_data=True,
extras_require=extras_require,
tests_require=tests_require,
install_requires=install_requires,
entry_points={
'console_scripts': [
'refdata = refdata.cli.base:cli'
]
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python'
]
)