-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (28 loc) · 939 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
from setuptools import setup
setup(
name= "PyABraOM",
packages = ['pyabraom'],
version = '0.2.0',
description= "A Python API to communicate with ABraOM database",
author ="Paola Carneiro and Felipe Colombelli",
author_email= "[email protected]",
url="https://github.com/bioinfo-hcpa/pyABraOM",
license='GNU General Public License v3.0',
include_package_data=True,
install_requires=["requests>=2.23.0",
"pandas>=1.1.5",
"times",
"tqdm"
],
py_modules=["Search_gene",
"Search_Region",
"Variant_ID",
'Searches'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.8',
],
)