-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (35 loc) · 1.23 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, os, shutil
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
if os.path.isdir('hladownload'):
if os.path.isdir('hladownload/alignmentCache'):
shutil.rmtree('hladownload/alignmentCache')
setuptools.setup(
name="hladownload",
version="1.0",
author="Ramon van Amerongen",
author_email="ramonamerong@live.nl",
description="Python command line program and module for retrieving HLA alleles, frequencies and eplets.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ramonamerong/hladownload",
project_urls={
"Bug Tracker": "https://github.com/ramonamerong/hladownload/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages= setuptools.find_packages(include=["hladownload", "hladownload.*"]),
entry_points = {
"console_scripts": ['hladownload = hladownload.__main__:main']
},
python_requires=">=3.8.5",
install_requires=[
'requests>=2.25.1',
'pandas>=1.2.4',
'biopython>=1.78',
'lxml>=4.6.3'
]
)