generated from jonn-smith/python_cli_template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtemplate_setup.py
37 lines (35 loc) · 1.22 KB
/
template_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
from io import open
from setuptools import find_packages, setup
# following src dir layout according to
# https://blog.ionelmc.ro/2014/05/25/python-packaging/#the-structure
version = "0.0.1"
setup(
name="lrmaCU",
version=version,
description="A python library for interacting with GCS, Cromwell, and Terra",
author="Steve Huang",
author_email="shuang@broadinstitute.org",
license="BSD 3-Clause",
long_description=open("README.md").read(),
install_requires="""
""".split(
"\n"
),
tests_require=["coverage", "pytest"],
python_requires=">=3.6",
packages=find_packages("src"),
package_dir={"": "src"},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD 3-Clause",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
],
entry_points={"console_scripts": ["lrmaCU=lrmaCU.__main__:main_entry"]},
include_package_data=True,
)