-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
40 lines (37 loc) · 1.09 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
PKG_NAME = "fosmid-walk"
PKG_DIR = PKG_NAME.replace('-', '_')
pks = [PKG_DIR]
setuptools.setup(
name=PKG_NAME,
version="1.0",
author="Avery, Kat, Tony",
author_email="[email protected]",
description="estimator for fosmid pool population size",
long_description=long_description,
long_description_content_type="text/markdown",
url=f"https://github.com/Tony-xy-Liu/{PKG_NAME}",
project_urls={
"Bug Tracker": f"https://github.com/Tony-xy-Liu/{PKG_NAME}/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
# packages=setuptools.find_packages(where="src"),
packages=pks,
# package_data={
# # "":["*.txt"],
# # "package-name": ["*.txt"],
# # "test_package": ["res/*.txt"],
# },
entry_points={
'console_scripts': [
f'foswalk = {PKG_DIR}:main',
]
},
python_requires=">=3.10",
)