-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
53 lines (50 loc) · 1.79 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
version = "1.22.2"
long_des = ""
with open(path.join(here, "README.md")) as f:
long_des = f.read()
setup(
name="MeleeUploader",
description="A YouTube Uploader with Super Smash Bros. in mind",
long_description=long_des,
long_description_content_type="text/markdown",
url="https://github.com/NikhilNarayana/Melee-YouTube-Uploader",
author="Nikhil Narayana",
author_email="[email protected]",
license="GNU Public License v3.0",
keywords="smash melee ssbm ssbu ultimate youtube uploader",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
],
entry_points=dict(
console_scripts=[
"meleeuploader = meleeuploader.main:main",
"smashuploader = meleeuploader.main:ult",
"s64uploader = meleeuploader.main:s64",
"rivalsuploader = meleeuploader.main:rivals",
"splatoonuploader = meleeuploader.main:splatoon",
]
),
python_requires=">= 3.7.0",
version=version,
packages=["meleeuploader", "meleeuploader.obswebsocket"],
install_requires=[
"CacheControl",
"google-api-python-client",
"google_auth_oauthlib",
"oauth2client",
"Pyforms-Lite",
"urllib3==1.26.15",
"websocket-client==0.54.0",
],
data_files=[("share/meleeuploader", ["meleeuploader/client_secrets.json"])],
package_data={"meleeuploader": ["meleeuploader/client_secrets.json"]},
)