forked from Botffy/polyskel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 723 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 723 Bytes
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
# can't use toml in setup.py and there's only one dependency right now
package_list = [
"euclid3"
]
setuptools.setup(
name="polyskel",
version="0.0.0",
author="https://github.com/Botffy",
author_email="",
description="A pip-installable version of Bottfy's polyskel.",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=package_list,
url="https://github.com/1build/polyskel",
packages=setuptools.find_packages("polyskel", exclude=["tests"]),
classifiers=[
"Programming Language :: Python :: 3"
],
python_requires='>=3.7',
)