-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (26 loc) · 879 Bytes
/
setup.py
File metadata and controls
32 lines (26 loc) · 879 Bytes
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
from setuptools import setup, find_packages
import io
version = '0.2.1'
author = 'ZSAIm'
author_email = 'zzsaim@163.com'
with io.open('README.rst', 'r', encoding='utf-8') as freadme:
long_description = freadme.read()
setup(
name='PyJSCaller',
version=version,
description='Run JavaScript code from Python',
long_description=long_description,
author=author,
author_email=author_email,
url='https://github.com/ZSAIm/PyJSCaller',
license='Apache-2.0 License',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
packages=find_packages(),
)