forked from EGA-archive/ega-download-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 987 Bytes
/
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
from setuptools import setup, find_packages
with open("README.txt", encoding='utf-8') as f:
long_description = f.read()
setup(
name="pyega3",
description="EGA python client",
long_description=long_description,
long_description_content_type="text/plain",
packages=find_packages(),
version = "3.0.44",
author="EGA team",
author_email="[email protected]",
install_requires=["requests", "tqdm", "htsget"],
keywords=["EGA", "archive"],
license="Apache License, Version 2.0",
url="https://github.com/EGA-archive/ega-download-client",
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.5"
],
entry_points={
"console_scripts": [
"pyega3 = pyega3.pyega3:main",
]
}
)