-
Notifications
You must be signed in to change notification settings - Fork 35
/
setup.py
executable file
·40 lines (34 loc) · 1.09 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
#! /usr/bin/env python
"""Setup configuration file for the Langkit framework."""
from distutils.core import setup
import os
ROOT_DIR = os.path.dirname(__file__)
if ROOT_DIR != '':
os.chdir(ROOT_DIR)
# Run the setup tools
setup(
name='Langkit',
version='0.1.0',
author='AdaCore',
author_email='report@adacore.com',
url='https://www.adacore.com',
description='A Python framework to generate language parsers',
install_requires=['Mako', 'PyYAML', 'funcy', 'docutils', 'e3-core'],
packages=['langkit',
'langkit.expressions',
'langkit.gdb',
'langkit.lexer',
'langkit.scripts',
'langkit.stylechecks',
'langkit.utils'],
package_data={'langkit': [
'coverage.css', 'support/*.adb', 'support/*.ads', 'support/*.gpr',
'support/*.adc', 'templates/*.mako', 'templates/*/*.mako', 'py.typed',
'adasat/src/*.ads', 'adasat/src/*.adb'
]},
entry_points={
"console_scripts": [
"create-project.py = langkit.scripts.create_project:main",
]
},
)