mirror of
https://github.com/Code-For-Groningen/temmies.git
synced 2025-03-15 07:10:15 +01:00
Unignored setup
This commit is contained in:
parent
82a072ee14
commit
fb8b5cd454
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,7 +3,6 @@ config.py
|
|||||||
tests/
|
tests/
|
||||||
pathfinding/
|
pathfinding/
|
||||||
test.py
|
test.py
|
||||||
setup.py
|
|
||||||
|
|
||||||
#Doc env
|
#Doc env
|
||||||
.docs_env
|
.docs_env
|
||||||
|
30
setup.py
Normal file
30
setup.py
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
from setuptools import find_packages, setup
|
||||||
|
|
||||||
|
with open("README.md", "r") as f:
|
||||||
|
l_description = f.read()
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name="temmies",
|
||||||
|
version="1.2.1",
|
||||||
|
packages=find_packages(),
|
||||||
|
description="A wrapper for the Themis website",
|
||||||
|
long_description=l_description,
|
||||||
|
long_description_content_type="text/markdown",
|
||||||
|
url="https://github.com/Code-For-Groningen/temmies",
|
||||||
|
author="Boyan K.",
|
||||||
|
author_email="boyan@confest.im",
|
||||||
|
license="GPLv3",
|
||||||
|
classifiers=[
|
||||||
|
"Development Status :: 4 - Beta",
|
||||||
|
"Intended Audience :: Developers",
|
||||||
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
||||||
|
"Programming Language :: Python :: 3.9",
|
||||||
|
],
|
||||||
|
install_requires=[
|
||||||
|
"requests",
|
||||||
|
"lxml",
|
||||||
|
"beautifulsoup4",
|
||||||
|
"keyring"
|
||||||
|
],
|
||||||
|
python_requires=">=3.9",
|
||||||
|
)
|
Loading…
x
Reference in New Issue
Block a user