-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
47 lines (41 loc) · 1.07 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
NAME = "RustDaVinci"
VERSION = "0.1"
DESCRIPTION = "Automatic Sign Art Painter for the game Rust by Facepunch"
AUTHOR = "Alexander Emanuelsson"
EMAIL = "Alexander.Emanuelsson94@gmail.com"
URL = "https://github.com/alexemanuelol/RustDaVinci"
REQUIRED = [
"Pillow==8.3.2",
"PyAutoGUI==0.9.41",
"pypiwin32==223",
"colorama==0.4.1",
"termcolor==1.1.0",
"pynput==1.4.2",
"numpy==1.16.2",
"opencv-python==4.0.0.21",
"pyqt5-tools==5.13.0.1.5",
"PyQt5==5.13.1"
]
with open("README.md") as file:
readme = file.read()
with open("LICENSE") as file:
license = file.read()
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
long_description=readme,
author=AUTHOR,
author_email=EMAIL,
url=URL,
license=license,
install_requires=REQUIRED,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"
]
)