Skip to content
Snippets Groups Projects
setup.py 505 B
Newer Older
  • Learn to ignore specific revisions
  • Kenneth Reitz's avatar
    Kenneth Reitz committed
    # -*- coding: utf-8 -*-
    
    
    Kenneth Reitz's avatar
    Kenneth Reitz committed
    from setuptools import setup, find_packages
    
    Kenneth Reitz's avatar
    Kenneth Reitz committed
    
    
    with open('README.rst') as f:
        readme = f.read()
    
    
    Kenneth Reitz's avatar
    Kenneth Reitz committed
    with open('LICENSE') as f:
        license = f.read()
    
    
    Kenneth Reitz's avatar
    Kenneth Reitz committed
    setup(
    
    Kenneth Reitz's avatar
    Kenneth Reitz committed
        name='sample',
    
        version='0.1.0',
    
    Kenneth Reitz's avatar
    Kenneth Reitz committed
        description='Sample package for Python-Guide.org',
        long_description=readme,
        author='Kenneth Reitz',
        author_email='me@kennethreitz.com',
        url='https://github.com/kennethreitz/samplemod',
        license=license,
        packages=find_packages(exclude=('tests', 'docs'))
    
    Kenneth Reitz's avatar
    Kenneth Reitz committed
    )