-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
46 lines (40 loc) · 1.51 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
#! /usr/bin/env python3
from setuptools import setup, find_packages
setup(
name = "vmflib",
version = "0.1.1",
packages = find_packages(),
scripts = ['tools/buildbsp.py'],
entry_points = {
'console_scripts': [
'buildbsp = buildbsp:main'
]
},
# metadata for upload to PyPI
author = "Stephen Eisenhauer",
author_email = "[email protected]",
description = "A package for creating Valve Map Format (VMF) files for the Source engine",
license = "BSD",
keywords = "vmf valve map format source engine",
url = "http://github.com/BHSPitMonkey/vmflib",
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Games/Entertainment",
],
long_description = """\
Tools for creating Valve Map Format (VMF) files
-----------------------------------------------
vmflib is a python module to help developers create maps for VMF-compatible
video games procedurally using Python. The VMF format is best known for its
use in the Source Engine and its many games.
Also included is a script (buildbsp) to help automate the process of compiling
and installing VMF maps into ready-to-use BSP files.
This package requires Python 3 or later.
"""
)