Reordered project structure

This commit is contained in:
Dennis Thiessen
2017-10-10 11:13:19 +02:00
parent 6fc4c5f5c0
commit 4f66af8d64
28 changed files with 1077 additions and 57 deletions

25
setup.py Normal file
View File

@@ -0,0 +1,25 @@
# -*- coding: utf-8 -*-
# Learn more: https://github.com/kennethreitz/setup.py
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='sample',
version='0.1.0',
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'))
)