-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (32 loc) · 1.11 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
from setuptools import find_packages, setup
with open("README.md") as f:
long_description = f.read()
with open("requirements.in") as f:
install_requires = f.read().splitlines()
with open("requirements.dev.in") as f:
dev_requires = f.read().splitlines()[1:] # Elide `-c requirements.txt` constraint
setup(
name="dagster_ads",
url="https://github.com/polyneme/dagster-ads",
packages=find_packages(
exclude=["dagster_ads_tests"]
),
use_scm_version=True,
setup_requires=["setuptools_scm"],
author="Donny Winston",
author_email="[email protected]",
description="Dagster code location for Astrophysics Data System (ADS) software-defined assets.",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
],
install_requires=install_requires,
extras_require={
"dev": dev_requires,
},
python_requires=">=3.10",
entry_points={"console_scripts": []},
)