forked from pySourceSDK/ValveVMF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (27 loc) · 1.08 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
from distutils.core import setup
setup(
name='valvevmf',
packages=['valvevmf'],
version='0.1.0',
license='gpl-3.0',
description='A library to parse .vmf files used in the source engine.',
author='Maxime Dupuis',
author_email='[email protected]',
url='https://github.com/pySourceSDK/ValveVMF',
download_url='https://github.com/pySourceSDK/ValveVMF/archive/v1.0.0.tar.gz',
keywords=['vmf', 'source', 'sourcesdk', 'hammer', 'valve'],
install_requires=['pyparsing', 'future'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)