-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 993 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
with open("requirements/main.in") as f:
install_requires = f.read().splitlines()
with open("requirements/dev.in") as f:
dev_requires = f.read().splitlines()
setup(
name="csv-ld",
url="https://github.com/polyneme/nmdc-mongo-tools",
packages=find_packages(),
use_scm_version=True,
setup_requires=["setuptools_scm"],
author="Donny Winston",
author_email="[email protected]",
description="Tools for CSV-LD, a CSV-based Serialization for Linked Data ",
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.8",
)