-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (27 loc) · 703 Bytes
/
setup.py
File metadata and controls
34 lines (27 loc) · 703 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
33
34
if __name__ == '__main__':
from setuptools import setup, Feature, Extension
setup(
name='jitpy',
description='A library to embed PyPy in CPython.',
long_description="""
jitpy
=====
A library that let's you embed PyPy into CPython.
Please see the `Documentation <http://jitpy.readthedocs.org/>`_.
Contact
-------
`Mailing list <https://groups.google.com/forum/#!forum/jitpy>`_
""",
version='0.1.3',
packages=['jitpy'],
zip_safe=False,
url='http://jitpy.readthedocs.org',
author='Maciej Fijalkowski',
author_email='jitpy@googlegroups.com',
license='MIT',
features={
},
install_requires=[
'cffi', 'pytest', 'py', 'numpy'
]
)