forked from speced/bikeshed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 1.12 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
from setuptools import find_packages, setup
with open("README.md", encoding="utf-8") as fh:
long_description = fh.read()
with open("bikeshed/semver.txt", encoding="utf-8") as fh:
semver = fh.read().strip()
with open("requirements.txt", encoding="utf-8") as fh:
install_requires = [x.strip() for x in fh.read().strip().split("\n") if len(x) and x[0].isalpha()]
setup(
name="bikeshed",
version=semver,
author="Tab Atkins-Bittner",
description="A document-authoring tool mainly intended for web specifications.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/speced/bikeshed/",
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
python_requires=">=3.9",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: Public Domain",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Documentation",
],
entry_points={"console_scripts": ["bikeshed = bikeshed:main"]},
)