-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (49 loc) · 1.49 KB
/
setup.py
File metadata and controls
50 lines (49 loc) · 1.49 KB
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
from setuptools import setup, find_packages
setup(
license="MIT",
name="dankware",
version="3.6.10",
author="SirDank",
author_email="SirDankenstein@protonmail.com",
description="Python package with various features!",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/SirDank/dankware",
project_urls={
"GitHub": "https://github.com/SirDank/dankware",
"Bug Tracker": "https://github.com/SirDank/dankware/issues",
},
keywords=[
"dank",
"dankware",
"multithread",
"gradient",
"fade",
"registry key",
"error traceback",
"random ip",
"github scraper",
"splash screen",
"windows tools",
"terminal",
],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Software Development",
],
package_dir={"": "."},
packages=find_packages(where="."),
extras_require={"extras": ["pillow"]},
install_requires=[
"rich",
"colorama",
"requests",
],
)