-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 688 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (21 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import setuptools
long_desc = open("README.md").read()
required = ['bottle', 'Paste', 'rcssmin', 'htmlmin', 'jsmin']
setuptools.setup(
name="Callue",
version="1.0.0",
author="Callum",
author_email="callum@jcwyt.com",
license="MIT",
description="A preprocessor of sorts for Bottle.py",
long_description=long_desc,
long_description_content_type="text/markdown",
url="https://github.com/Turnip1234/Callue",
packages = ['callue'],
project_urls={
"Bug Tracker": "https://github.com/Turnip1234/Callue/issues",
},
key_words="preprocessor bottle webserver python backend",
install_requires=required,
python_requires=">=3.6",
)