-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
42 lines (39 loc) · 1.52 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
from setuptools import setup, find_packages
import re
with open('README.md') as f:
re_omit = r'<!--- start pypi omit -->.*<!--- end pypi omit -->'
long_description = re.sub(re_omit, '', f.read(), flags=re.S)
VERSION = '{{VERSION_PLACEHOLDER}}'
if 'VERSION_PLACEHOLDER' in VERSION:
VERSION = '0.0.0'
setup(
name='valvevmf',
packages=['valvevmf'],
version=VERSION,
description='A library to parse .VMF files (level editor files for the Source engine).',
long_description=long_description,
long_description_content_type="text/markdown",
license='gpl-3.0',
author='Maxime Dupuis',
author_email='[email protected]',
url='https://pysourcesdk.github.io/ValveVMF/',
project_urls={
'Documentation': 'https://pysourcesdk.github.io/ValveVMF/',
'Github': 'https://github.com/pySourceSDK/ValveVMF',
},
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 :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Operating System :: Unix',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows'
],
)