summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Hellmann <doug.hellmann@dreamhost.com>2012-06-19 14:12:49 -0400
committerDoug Hellmann <doug.hellmann@dreamhost.com>2012-06-19 14:12:49 -0400
commit297158f6dd539e0d01bc302d8cc8b794e2d7c995 (patch)
tree50b2452d7e42ea8721f41f484bff5c604aba9cb8
parent03116cf7f4de77f35e922daad409779035553293 (diff)
downloadstevedore-297158f6dd539e0d01bc302d8cc8b794e2d7c995.tar.gz
create setup.py
-rw-r--r--README.rst (renamed from README.md)0
-rw-r--r--setup.py64
2 files changed, 64 insertions, 0 deletions
diff --git a/README.md b/README.rst
index ff05c88..ff05c88 100644
--- a/README.md
+++ b/README.rst
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..1922e2f
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,64 @@
+#!/usr/bin/env python
+
+# Bootstrap installation of Distribute
+import distribute_setup
+distribute_setup.use_setuptools()
+
+from setuptools import setup, find_packages
+
+try:
+ long_description = open('README.rst', 'rt').read()
+except IOError:
+ long_description = ''
+
+install_requires = ['distribute',
+ ]
+
+setup(
+ name='stevedore',
+ version='0.1',
+
+ description='Manage dynamic plugins for Python applications',
+ long_description=long_description,
+
+ author='Doug Hellmann',
+ author_email='doug.hellmann@dreamhost.com',
+
+ url='https://github.com/dreamhost/stevedore',
+ download_url='https://github.com/dreamhost/stevedore/tarball/master',
+
+ classifiers=['Development Status :: 3 - Alpha',
+ 'License :: OSI Approved :: Apache Software License',
+ 'Programming Language :: Python',
+ 'Programming Language :: Python :: 2',
+ 'Programming Language :: Python :: 2.7',
+ 'Programming Language :: Python :: 3',
+ 'Programming Language :: Python :: 3.2',
+ 'Intended Audience :: Developers',
+ 'Environment :: Console',
+ ],
+
+ platforms=['Any'],
+
+ scripts=[],
+
+ provides=['stevedore',
+ ],
+ install_requires=install_requires,
+
+ namespace_packages=[],
+ packages=find_packages(),
+ include_package_data=True,
+ # Scan the input for package information
+ # to grab any data files (text, images, etc.)
+ # associated with sub-packages.
+ # package_data=find_package_data(PROJECT,
+ # package=PROJECT,
+ # only_in_packages=False,
+ # ),
+
+ entry_points={
+ },
+
+ zip_safe=False,
+ )