forked from grivescorbett/PyExecJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·49 lines (45 loc) · 1.47 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
#!/usr/bin/env python3
# -*- coding: ascii -*-
from __future__ import division, with_statement
version = '1.1.0'
author = "Omoto Kenji"
license = "MIT License"
author_email = '[email protected]'
from setuptools import setup, find_packages
import sys
import io
with io.open('README.rst', encoding='ascii') as fp:
long_description = fp.read()
if sys.version_info < (2, 7):
install_requires = "argparse ordereddict".split()
else:
install_requires = []
setup(
packages=find_packages(),
include_package_data=True,
name='PyExecJS',
version=version,
description='Run JavaScript code from Python',
long_description=long_description,
author=author,
author_email=author_email,
url='https://github.com/doloopwhile/PyExecJS',
license=license,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: JavaScript',
],
install_requires=install_requires,
test_suite="test_execjs",
)