-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (24 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
import setuptools
from rva_points_app.version import __version__
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setuptools.setup(
name="rva-points",
version=__version__,
author="BGM",
author_email="[email protected]",
description="Points calculator for Re-Volt America",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Re-Volt-America/RVA-Points",
packages=setuptools.find_packages(),
py_modules=["rva_points"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License AGPL-3.0",
"Operating System :: OS Independent",
"Development Status :: alpha"
],
python_requires='>=3.8',
install_requires=['wxPython', 'PyYAML', 'PyInstaller', 'requests', 'appdirs', 'packaging', 'attrdict3']
)