-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 940 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
from pathlib import Path
from setuptools import (setup,
find_packages)
PARENT_DIR = Path(__file__).parent
README_FILE = (PARENT_DIR / "README.md").read_text()
setup(
name="biodbs",
version="0.0.1",
description="bioDBs is a Python package for getting data from biological databases.",
long_description=README_FILE,
long_description_content_type="text/markdown",
url="https://github.com/qwerty239qwe/biodbs",
author="qwerty239qwe",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
packages=find_packages(exclude=()),
include_package_data=True,
install_requires=["pandas",
"tqdm",
"aiohttp",
"requests"],
entry_points={},
)