-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (30 loc) · 1.06 KB
/
setup.py
File metadata and controls
35 lines (30 loc) · 1.06 KB
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
import setuptools
import json.encoder
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()[1:] # Elide `-c main.txt` constraint
setuptools.setup(
name="intro-linkeddata-mongo",
url="https://github.com/polyneme/intro-linkeddata-mongo-python",
packages=setuptools.find_packages(exclude=["tests"]),
use_scm_version=True,
setup_requires=["setuptools_scm"],
author="Donny Winston",
author_email="donny@polyneme.xyz",
description="Introduction to Linked Data and MongoDB with Python",
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.9",
)