forked from metapensiero/metapensiero.pj
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
71 lines (64 loc) · 2.15 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# -*- coding: utf-8 -*-
# :Project: metapensiero.pj -- A Python 3 to ES6 Javascript translator
# :Created: lun 22 feb 2016 16:00:00 CET
# :Author: Alberto Berti <[email protected]>
# :License: GNU General Public License version 3 or later
# :Copyright: © 2016-2022 Alberto Berti
#
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.rst'), encoding='utf-8') as f:
CHANGES = f.read()
with open(os.path.join(here, 'version.txt'), encoding='utf-8') as f:
VERSION = f.read().strip()
setup(
name="javascripthon",
version=VERSION,
url="https://github.com/azazel75/metapensiero.pj",
description="Javascript for refined palates:"
" a Python 3 to ES6 Javascript translator",
long_description=README + '\n\n' + CHANGES,
author="Alberto Berti",
author_email="[email protected]",
license="GPLv3+",
classifiers=[
'Development Status :: 5 - Production/Stable',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
],
keywords='JavaScript EcmaScript compilation translation transpiling babel',
packages=['metapensiero.' + pkg
for pkg in find_packages('src/metapensiero')],
package_dir={'': 'src'},
zip_safe=False,
namespace_packages=['metapensiero'],
install_requires=[
#'setuptools',
#'dukpy',
],
extras_require={
'dev': [
'metapensiero.tool.bump_version',
'readme_renderer',
],
'test': [
'pytest',
'pytest-cov',
'meta'
],
},
entry_points={
'console_scripts': ['pj=metapensiero.pj.__main__:main'],
},
package_data={
'metapensiero.pj': ['data/*.js']
},
)