-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
34 lines (31 loc) · 1.11 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
from setuptools import setup
from ena_upload._version import __version__
with open("README.md", 'r') as f:
long_description = f.read()
with open('requirements.txt', 'r') as f:
required = f.read().splitlines()
setup(
name='ena-upload-cli',
version=__version__,
keywords=["pip", "ena-upload-cli", "cli", "ENA", "upload"],
description='Command Line Interface to upload data to the European Nucleotide Archive',
author="Dilmurat Yusuf",
author_email="[email protected]",
long_description_content_type='text/markdown',
packages=['ena_upload', 'ena_upload.json_parsing'],
package_dir={'ena_upload': 'ena_upload'},
package_data={
'ena_upload': ['templates/*.xml', 'templates/*.xsd', 'json_parsing/json_schemas/*.json']
},
long_description=long_description,
url="https://github.com/usegalaxy-eu/ena-upload-cli",
license='MIT',
install_requires=[required],
classifiers=[
"Operating System :: OS Independent"
],
python_requires='>=3.7',
entry_points={
'console_scripts': ["ena-upload-cli=ena_upload.ena_upload:main"]
},
)