-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (37 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
35
36
37
38
39
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="limes-x",
version="1.0.0",
author="Tony Liu",
author_email="[email protected]",
description="declarative workflow automation",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/hallamlab/limes-x",
project_urls={
"Bug Tracker": "https://github.com/hallamlab/limes-x/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': [
# 'smg = simple_meta:main',
# ]
# },
python_requires=">=3.10",
install_requires=[
"snakemake",
]
)