-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (30 loc) · 1021 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
from setuptools import find_packages, setup
with open("README.md") as fh:
long_description = fh.read()
with open("semver.txt") as fh:
semver = fh.read().strip()
"""
with open("requirements.txt") as fh:
install_requires = [x.strip() for x in fh.read().strip().split("\n")]
"""
setup(
name="kdl-py",
version=semver,
author="Tab Atkins-Bittner",
description="A parser for the KDL language.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/tabatkins/kdlpy/",
packages=find_packages(),
include_package_data=True,
install_requires=[],
python_requires=">=3.7",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Documentation",
],
entry_points={"console_scripts": ["kdlreformat = kdl:cli"]},
)