-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (43 loc) · 1.71 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
from setuptools import find_packages, setup
with open('README.md', 'r') as fh:
readme = fh.read()
with open('requirements.txt', 'r') as fh2:
reqs = fh2.read()
setup(
name='VBPatcher',
version='0.9.0',
description=
'The Valheim BepInEx Patcher (VBPatcher) is a CLI application for patching the Unity modding plugin, BepInEx, to its latest release (whether stable or bleeding-edge).',
url='https://github.com/schlopp96/VBPatcher',
author='schlopp96',
author_email='[email protected]',
license='GPL v3.0',
long_description=readme,
long_description_content_type='text/markdown',
packages=find_packages(),
entry_points={'console_scripts': ['vbpatcher=VBPatcher.main:main']},
include_package_data=True,
install_requires=[reqs],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Games/Entertainment",
"Topic :: Utilities",
],
keywords=[
'python,'
'Valheim', 'BepInEx', 'patcher', 'mods', 'nexus', 'vbp', 'stable',
'bleeding', 'edge', 'VBPatcher', 'vortex', 'patching', 'patch-install',
'CLI', 'console'
])