Author: Ronan Lamy <[email protected]>
Branch: install-rpython
Changeset: r76643:34784ec27d15
Date: 2015-03-30 17:27 +0100
http://bitbucket.org/pypy/pypy/changeset/34784ec27d15/

Log:    Create a setup.py that installs rpython

diff --git a/setup.py b/setup.py
new file mode 100644
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,39 @@
+"""
+Setup.py script for RPython
+"""
+from setuptools import setup, find_packages
+# To use a consistent encoding
+from codecs import open
+from os import path
+
+here = path.abspath(path.dirname(__file__))
+with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
+    long_description = f.read()  # XXX
+
+setup(
+    name='rpython',
+    version='0.1',
+    description='RPython',
+    long_description=long_description,
+
+    url='https://rpython.readthedocs.org',
+    author='The PyPy team',
+    author_email='[email protected]',
+    license='MIT',
+
+    classifiers=[
+        'Development Status :: 3 - Alpha',
+        'Intended Audience :: Developers',
+        'Topic :: Software Development :: Build Tools',
+        'License :: OSI Approved :: MIT License',
+        'Programming Language :: Python :: 2',
+        'Programming Language :: Python :: 2.6',
+        'Programming Language :: Python :: 2.7',
+    ],
+    keywords='development',
+
+    packages=find_packages(exclude=[
+        '_pytest', 'ctypes_configure', 'include', 'lib-python', 'lib-pypy',
+        'py', 'pypy', 'site-packages', 'testrunner']),
+    install_requires=['pytest'],
+)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to