-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
44 lines (38 loc) · 1.58 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
"""Setup script for transpyle package."""
import json
import pathlib
import setup_boilerplate
class Package(setup_boilerplate.Package):
"""Package metadata."""
name = 'transpyle'
description = 'performance-oriented transpiler for Python'
url = 'https://github.com/mbdevpl/transpyle'
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Education',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Code Generators',
'Topic :: Software Development :: Compilers',
'Topic :: Software Development :: Pre-processors',
'Topic :: Utilities']
keywords = ['compiler', 'just-in-time', 'source-to-source', 'transpilation', 'transpiler']
extras_require = {}
entry_points = {
'console_scripts': ['transpyle = transpyle.__main__:main']}
if __name__ == '__main__':
_HERE = pathlib.Path(__file__).parent
_EXTRAS = pathlib.Path(_HERE, 'extras_requirements.json')
with _EXTRAS.open() as json_file:
Package.extras_require = json.load(json_file)
Package.setup()