[pypy-commit] pypy install-rpython: Create a setup.py that installs rpython

rlamy noreply at buildbot.pypy.org
Mon Mar 30 18:27:56 CEST 2015


Author: Ronan Lamy <ronan.lamy at gmail.com>
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='pypy-dev at python.org',
+    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'],
+)


More information about the pypy-commit mailing list