-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
44 lines (41 loc) · 1.42 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
#!/usr/bin/env python3
from setuptools import setup
from os import path
root = path.abspath(path.dirname(__file__))
version = "3.6.2"
long_des = ""
with open(path.join(root, "README.md")) as f:
long_des = f.read()
setup(
name="FRCUploader",
description="A YouTube Uploader with FIRST Robotics Competition in mind",
long_description=long_des,
long_description_content_type="text/markdown",
url="https://github.com/NikhilNarayana/FRC-YouTube-Uploader",
author="Nikhil Narayana",
author_email="nikhil.narayana@live.com",
license="GNU Public License v3.0",
keywords="frc robotics youtube uploader",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.6",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
],
entry_points=dict(console_scripts=["frcuploader = frcuploader.main:main"]),
python_requires=">=3.7.0",
version=version,
packages=["frcuploader"],
install_requires=[
"CacheControl",
"google-api-python-client",
"google_auth_oauthlib",
"oauth2client",
"Pyforms-Lite",
"tbapy",
"urllib3==1.26.15",
],
data_files=[("share/frcuploader", ["frcuploader/client_secrets.json"])],
package_data={"frcuploader": ["frcuploader/client_secrets.json"]},
)