-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 851 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
with open("requirements.txt", "r") as f:
install_requires = [line.strip() for line in f if line.strip()]
setup(
name="accelerator_source_cedar",
version="0.1.0",
description="accelerator source cedar ingest",
author="Mike Conway",
author_email="[email protected]",
url="https://github.com/NIEHS/accelerator-source-cedar",
packages=find_packages(),
install_requires=[open("requirements.txt").read()],
license="BSD 3-Clause",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
package_data={"accelerator_source_cedar": ["accel_cedar/templates/*.jinja", "accel_cedar/resources/*"]},
include_package_data=True,
)