-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
36 lines (33 loc) · 1.44 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="GeneGrouper",
version="1.0.3",
author="Alexander G. McFarland",
author_email="[email protected]",
description="Find and cluster genomic regions containing a seed gene",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/agmcfarland/GeneGrouper",
project_urls={
"Bug Tracker": "https://github.com/agmcfarland/GeneGrouper/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src", exclude=['docs','test_data']), #exlude = ['*.egg-info', ]
entry_points={
'console_scripts': ['GeneGrouper = GeneGrouper.__main__:main'], },
package_data={'GeneGrouper' : ['Rscripts/*']},
python_requires=">=3.6")
# https://packaging.python.org/tutorials/installing-packages/#creating-virtual-environments
# https://packaging.python.org/tutorials/packaging-projects/
# https://trstringer.com/easy-and-nice-python-cli/
# https://github.com/pypa/sampleproject/blob/main/setup.py
# https://chriswarrick.com/blog/2014/09/15/python-apps-the-right-way-entry_points-and-scripts/