Skip to content

Instantly share code, notes, and snippets.

@Alquimista
Created June 10, 2012 16:56
Show Gist options
  • Save Alquimista/2906605 to your computer and use it in GitHub Desktop.
Save Alquimista/2906605 to your computer and use it in GitHub Desktop.
#!/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='rogeaa.cyc@gmail.com',
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