forked from SkyTemple/ExplorerScript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (38 loc) · 1.33 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
__version__ = '0.1.1'
from setuptools import setup, find_packages
# README read-in
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
# END README read-in
setup(
name='explorerscript',
version=__version__,
packages=find_packages(),
description='ExplorerScript and SSBScript: Script languages for decompiled SSB (Pokémon Mystery Dungeon Explorers of Sky)',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/SkyTemple/ExplorerScript/',
install_requires=[
'python-igraph >= 0.8.0',
'antlr4-python3-runtime == 4.8'
],
extras_require={
'pygments': ["pygments>=2.6.1"]
},
entry_points='''
[pygments.lexers]
expslexer=explorerscript.pygments.expslexer:ExplorerScriptLexer
''',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
)