forked from lloesche/valheim-server-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.23 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="env2cfg",
version="0.0.1",
description="Generate BepInEx config from env",
license="Apache 2.0",
packages=find_packages(),
long_description=read("README.md"),
entry_points={
"console_scripts": ["env2cfg = env2cfg.__main__:main"],
},
include_package_data=True,
zip_safe=False,
install_requires=[],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
classifiers=[
# Current project status
"Development Status :: 4 - Beta",
# Audience
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
# License information
"License :: OSI Approved :: Apache Software License",
# Supported python versions
"Programming Language :: Python :: 3.8",
# Supported OS's
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
# Extra metadata
"Environment :: Console",
"Natural Language :: English",
"Topic :: Utilities",
],
keywords="valheim valheimplus bepinex",
)