-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
53 lines (50 loc) · 1.61 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import os, sys
from pathlib import Path
import setuptools
HERE = Path(os.path.realpath(__file__)).parent
NAME = "fabfos".lower()
ENTRY_POINTS = [
'fabfos = fabfos.cli:main',
]
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open(HERE.joinpath(f"src/{NAME}/version.txt")) as f:
VERSION = f.read()
if __name__ == "__main__":
setuptools.setup(
name=NAME,
version=VERSION,
author="Tony Liu, Connor Morgan-Lang, Avery Noonan, Zach Armstrong, and Steven J. Hallam",
author_email="[email protected]",
description="Analysis pipeline for pooled fosmids",
long_description=long_description,
long_description_content_type="text/markdown",
license_files = ('LICENSE',),
url=f"https://github.com/hallamlab/{NAME}",
project_urls={
"Bug Tracker": f"https://github.com/hallamlab/{NAME}/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
# packages=pks,
package_data={
"":[ # "" is all packages
"version.txt",
"deinterleave_fastq.sh",
],
# examples
# "package-name": ["*.txt"],
# "test_package": ["res/*.txt"],
},
entry_points={
'console_scripts': ENTRY_POINTS,
},
python_requires=">=3.11",
install_requires=[
"packaging >=21.0",
]
)