Skip to content

Commit

Permalink
Add setup.py for packaging.
Browse files Browse the repository at this point in the history
  • Loading branch information
dpassen committed Sep 10, 2018
1 parent 5901ad8 commit 3c5bca5
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
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='optional.py',
version='0.1.0',
description='An implementation of the Optional object in Python',
long_description=readme,
author='Chad Befus',
author_email='[email protected]',
url='https://github.com/cbefus/optional.py',
license=license,
packages=find_packages(exclude=('test'))
)

0 comments on commit 3c5bca5

Please sign in to comment.