-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (35 loc) · 1.17 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
31
32
33
34
35
36
import WebScriptsTools as package
from setuptools import setup
setup(
name=package.__name__,
version=package.__version__,
py_modules=[package.__name__],
install_requires=[],
author=package.__author__,
author_email=package.__author_email__,
maintainer=package.__maintainer__,
maintainer_email=package.__maintainer_email__,
description=package.__description__,
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url=package.__url__,
project_urls={
"Documentation": "https://mauricelambert.github.io/info/python/code/WebScriptsTools.html",
},
classifiers=[
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
],
python_requires=">=3.6",
keywords=[
"WebScripts",
"Tools",
],
platforms=["Windows", "Linux", "MacOS"],
license=package.__license__,
)