-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
51 lines (46 loc) · 1.47 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from setuptools import setup
requirements = []
README = ""
with open("requirements.txt") as f:
requirements = f.read().splitlines()
with open("README.rst") as f:
README = f.read()
packages = [
"cool_utils"
]
setup(
name="cool-utils",
author="BenitzCoding",
author_email="benitzcoding@yahoo.com",
url="https://github.com/Senarc-Studios/Cool-Utils",
project_urls={
"Documentation": "https://cool-utils.senarc.online",
"Issue tracker": "https://github.com/Senarc-Studios/Cool-Utils/issues",
"Github": "https://github.com/Senarc-Studios/Cool-Utils"
},
version="1.3.3",
packages=packages,
license="BSD",
description="This is Cool Utility tools that you can use in python.",
long_description=README,
long_description_content_type="text/x-rst",
include_package_data=True,
install_requires=requirements,
python_requires=">=3.7.0",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
)