-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (32 loc) · 1.04 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
import setuptools
from pathlib import Path
import igseq
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="igseq",
version=igseq.__version__,
description="IgSeq commands",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ShawHahnLab/igseq",
install_requires=[
"biopython>=1.80",
"newick>=1.9"
],
python_requires='>=3.9',
packages=setuptools.find_packages(exclude=["test_*"]),
# How is this still so annoying?
# https://stackoverflow.com/q/27664504
package_data={
'igseq': [str(path.relative_to("igseq")) for path in Path("igseq/data").glob("**/*")]},
include_package_data=True,
entry_points={'console_scripts': [
'igseq=igseq.__main__:main',
]},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: POSIX :: Linux",
],
)