2012-04-16 20:45:44 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2017-08-28 13:31:05 -04:00
|
|
|
# Learn more: https://github.com/kennethreitz/setup.py
|
|
|
|
|
2012-04-16 21:27:40 -04:00
|
|
|
from setuptools import setup, find_packages
|
2012-04-16 20:45:44 -04:00
|
|
|
|
|
|
|
|
|
|
|
with open('README.rst') as f:
|
|
|
|
readme = f.read()
|
|
|
|
|
2012-04-16 21:27:40 -04:00
|
|
|
with open('LICENSE') as f:
|
|
|
|
license = f.read()
|
|
|
|
|
2012-04-16 20:45:44 -04:00
|
|
|
setup(
|
2012-04-16 21:27:40 -04:00
|
|
|
name='sample',
|
2016-12-21 13:24:58 -05:00
|
|
|
version='0.1.0',
|
2012-04-16 21:27:40 -04:00
|
|
|
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'))
|
2012-04-16 20:45:44 -04:00
|
|
|
)
|
|
|
|
|