-
-
Notifications
You must be signed in to change notification settings - Fork 214
/
setup.py
43 lines (40 loc) · 1.25 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
import os
import sys
from setuptools import setup
sys.path.append ('transcrypt/modules/org/transcrypt')
def read (*paths):
with open (os.path.join (*paths), 'r') as aFile:
return aFile.read()
setup (
name = 'Transcrypt',
version = '3.9.3',
description = 'Python to JavaScript transpiler, supporting multiple inheritance and generating lean, highly readable code',
long_description = (
read ('README.rst')
),
long_description_content_type = 'text/x-rst',
keywords = ['python', 'javascript', 'transpiler', 'compiler', 'browser', 'web', 'multiple inheritance', 'transcrypt', 'django', 'flask', 'react'],
url = 'https://www.transcrypt.org',
license = 'Apache 2.0',
author = 'Jacques de Hooge',
author_email = 'info@transcrypt.org',
packages = ['transcrypt'],
install_requires = [
'mypy'
],
entry_points = {
'console_scripts': [
'transcrypt = transcrypt.__main__:main'
]
},
include_package_data = True,
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.9',
],
)