Skip to content

Commit

Permalink
create setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Doug Hellmann committed Jun 19, 2012
1 parent 03116cf commit 297158f
Show file tree
Hide file tree
Showing 2 changed files with 64 additions and 0 deletions.
File renamed without changes.
64 changes: 64 additions & 0 deletions 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,
)

0 comments on commit 297158f

Please sign in to comment.