generated from jonn-smith/python_cli_template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (38 loc) · 1.39 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
41
42
43
44
45
from io import open
from setuptools import find_packages, setup
with open('requirements.txt', 'r') as fh:
to_be_installed = [l.rstrip('\n') for l in fh.readlines()]
with open('test-requirements.txt', 'r') as fh:
test_dev_install = [l.rstrip('\n') for l in fh.readlines()]
version = "0.0.12"
setup(
name="lrmaCUX",
version=version,
description="A python library for interacting with GCS, Cromwell, and Terra",
url="https://github.com/broadinstitute/lrma-cloud-utils",
author="Steve Huang",
author_email="[email protected]",
license="BSD 3-Clause",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
python_requires=">=3.9",
install_requires=to_be_installed,
tests_require=test_dev_install,
packages=find_packages(
where="src",
include=['lrmaCU*', 'smrtlink_parser*']
),
package_dir={"": "src"},
include_package_data=True,
classifiers=[
"Development Status :: 1 - preAlpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD 3-Clause",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)