-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 920 Bytes
/
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
from setuptools import find_packages
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="vgazer",
version="79",
url="https://github.com/Survival-SDK/vgazer",
license="CC0",
author="Vasiliy Edomin",
author_email="[email protected]",
description="Library for checking versions and installing various software",
packages=find_packages(),
scripts=["vgazer"],
install_requires=[
"bs4",
"multimethod",
"requests",
"yolk3k",
],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Build Tools",
],
zip_safe=False
)