-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
40 lines (36 loc) · 1.17 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
from os import path
from setuptools import setup, find_packages, Extension
from codecs import open
readme_path = path.join(path.abspath(path.dirname(__file__)), 'README.rst')
with open(readme_path, encoding='utf-8') as readme:
long_description = readme.read()
extensions = [
Extension(
'pyduktape2',
['pyduktape2.pyx']
)
]
setup(
name='pyduktape2',
version='0.4.6',
author='Stefano Dissegna',
description='Python integration for the Duktape Javascript interpreter',
long_description=long_description,
url='https://github.com/phith0n/pyduktape2',
license='GPL',
keywords='javascript duktape embed',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Cython',
'Programming Language :: Python :: 3',
'Programming Language :: JavaScript',
'Topic :: Software Development :: Interpreters',
],
packages=find_packages(exclude=['tests']),
setup_requires=['setuptools>=18.0', 'Cython<3'],
test_suite='tests',
ext_modules=extensions,
include_package_data=True,
zip_safe=False
)