forked from joseale2310/zenodo_get
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1.17 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
#!/usr/bin/env python
import setuptools
import zenodo_get as zget
setuptools.setup(
name=zget.__title__,
version=zget.__version__,
author=zget.__author__,
author_email=zget.__email__,
description=zget.__summary__,
description_content_type="text/plain",
long_description=zget.__description__,
long_description_content_type="text/markdown",
url=zget.__uri__,
license=zget.__license__,
packages=setuptools.find_packages(),
entry_points={"console_scripts": ["zenodo_get = zenodo_get.zget:zenodo_get"]},
python_requires=">=3.8",
setup_requires=[],
install_requires=["requests", "wget"],
keywords="zenodo download",
classifiers=[
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3",
],
)