generated from DataONEorg/repo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (41 loc) · 1.3 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
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
author='Ian Nesbitt',
author_email='[email protected]',
name='figshare_import',
version='0.1.0',
description='DataONE Figshare Qualified Dublin Core staging workflow',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/DataONEorg/figshare-import',
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
'dataone.common',
'dataone.libclient',
'pyld',
],
extras_require={
'dev': [
'sphinx',
]
},
entry_points = {
'console_scripts': [
'figsharedownload=figshare_import.run_figshare_download:run_figshare_download',
'figshareimport=figshare_import.run_data_upload:run_data_upload',
'testfigshareimport=figshare_import.test:main'
],
},
python_requires='>=3.9, <4.0',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
],
license='Apache Software License 2.0',
)