Created
June 10, 2012 16:56
-
-
Save Alquimista/2906605 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
from setuptools import setup, find_packages | |
with open('README.md') as f: | |
readme = f.read() | |
with open('LICENSE') as f: | |
license = f.read() | |
setup( | |
name='Plug', | |
version='0.1.0', | |
description='Plugin Management', | |
long_description=readme, | |
author='Roberto Gea', | |
author_email='[email protected]', | |
url='https://bitbucket.com/alquimista/plug', | |
download_url='https://bitbucket.org/alquimista/plug/downloads', | |
license=license, | |
packages=find_packages(exclude=('tests', 'docs')) | |
classifiers=[ | |
'Development Status :: 1', | |
'Environment :: Plugins', | |
'Intended Audience :: Developers', | |
'License :: OSI Approved :: MIT License', | |
'Natural Language :: English', | |
'Operating System :: Microsoft :: Windows', | |
'Operating System :: POSIX :: Linux', | |
'Programming Language :: Python :: 2.7', | |
'Topic" :: Utilities', | |
], | |
keywords = "plugin mangment system", | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment