forked from FranticFairy/FairyUKSet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (48 loc) · 1.93 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
47
48
49
50
51
52
53
#!/usr/bin/env python3
import os
from setuptools import setup, Extension, find_packages
from setuptools.command.build_py import build_py
from nml import version_info
NML_VERSION = version_info.get_and_write_version()
class NMLBuildPy(build_py):
def run(self):
# Create a parser so that nml/generated/{parse,lex}tab.py are generated.
from nml import parser
parser.NMLParser(rebuild=True)
# Then continue with the normal setuptools build.
super().run()
setup(
name='nml',
version=NML_VERSION,
packages=find_packages(),
description='An OpenTTD NewGRF compiler for the nml language',
long_description=('A tool to compile NewGRFs for OpenTTD from nml files'
'NML is a meta-language that aims to be a lot simpler to'
' learn and use than nfo used traditionally to write NewGRFs.'),
license='GPL-2.0+',
classifiers=['Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Compilers',
],
url='https://github.com/OpenTTD/nml',
author='NML Development Team',
author_email='[email protected]',
entry_points={
'console_scripts': ['nmlc = nml.main:run']
},
ext_modules=[Extension("nml_lz77", ["nml/_lz77.c"], optional=True)],
python_requires='>=3.5',
install_requires=[
"Pillow>=3.4",
"ply",
],
cmdclass={'build_py': NMLBuildPy}
)