-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (33 loc) · 1.02 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
import setuptools
import datacite_rest as meta
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
install_requires = [
'pydantic>=1.8.1,<1.9',
'pyhumps>=1.6.1,<1.7',
'requests>=2.25.1,<2.26'
]
tests_require = install_requires + ['pytest']
setuptools.setup(
name=meta.__title__,
version=meta.__version__,
author=meta.__author__,
author_email=meta.__author_email__,
description=meta.__description__,
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/pypa/sampleproject',
license=meta.__license__,
project_urls={
'Bug Tracker': 'https://github.com/pypa/sampleproject/issues',
},
install_requires=install_requires,
tests_require=tests_require,
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
packages=setuptools.find_packages(),
python_requires='>=3.6',
)