-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (26 loc) · 1.05 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
from distutils.core import setup
setup(
name='fgdtools',
packages=['fgdtools'],
version='1.0.2',
license='gpl-3.0',
description='(DEPRECATED: check ValveFGD) A library to parse .fgd files used in the source engine.',
author='Maxime Dupuis',
author_email='mdupuis@hotmail.ca',
url='https://maxdup.github.io/fgd-tools/',
download_url='https://github.com/maxdup/fgd-tools/archive/v1.0.2.tar.gz',
keywords=['fgd', 'source', 'sourcesdk', 'hammer', 'valve'],
install_requires=['pyparsing', 'future'],
classifiers=[
'Development Status :: 7 - Inactive',
'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',
],
)