-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (49 loc) · 1.52 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
52
53
54
55
56
from setuptools import setup, find_packages
setup(
license = "MIT",
name = "dankware",
version = "3.6.4",
author = "SirDank",
author_email = "[email protected]",
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",
]
)