forked from wiiudev/pyGecko
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
43 lines (39 loc) · 1.18 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
from setuptools import setup
requirements = []
"""
with open('requirements.txt') as f:
requirements = f.read().splitlines()
"""
readme = ""
with open('README.md', 'r') as f:
readme = f.read()
packages = [
"ugecko",
"ugecko.enums",
"ugecko.utils",
]
setup(
name = "ugecko",
author = "WiiuDev, VCoding",
url = "https://github.com/vincent-coding/uGecko",
project_urls = {
"Source Code": "https://github.com/vincent-coding/uGecko",
"Documentation": "https://github.com/vincent-coding/uGecko/tree/master/docs",
"Issue Tracker": "https://github.com/vincent-coding/uGecko/issues"
},
version = "1.3.3",
packages = packages,
license = "MIT",
description = "Python library for use with TCPGecko. Requires kernel exploit to use.",
long_description = readme,
long_description_content_type = "text/markdown",
install_requires = requirements,
python_requires = ">=3.8.0",
classifiers=[
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
)