-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (48 loc) · 1.58 KB
/
setup.py
File metadata and controls
49 lines (48 loc) · 1.58 KB
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
import os, sys
from pathlib import Path
HERE = Path(os.path.realpath(__file__)).parent
sys.path = [str(p) for p in set([
HERE.joinpath("src")
]+sys.path)]
import setuptools
from fabfos.utils import USER, NAME, ENTRY_POINTS, VERSION
SHORT_SUMMARY = "A pipeline for the analysis of pooled fosmid data"
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.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="shallam@mail.ubc.ca",
description=SHORT_SUMMARY,
long_description=long_description,
long_description_content_type="text/markdown",
license_files = ('LICENSE',),
url=f"https://github.com/{USER}/{NAME}",
project_urls={
"Bug Tracker": f"https://github.com/{USER}/{NAME}/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: Unix",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
# packages=pks,
package_data={
"":[ # "" is all packages
"version.txt",
"steps/deinterleave_fastq.sh",
],
# examples
# "package-name": ["*.txt"],
# "test_package": ["res/*.txt"],
},
entry_points={
'console_scripts': ENTRY_POINTS,
},
python_requires=">=3.10",
install_requires=[
]
)