diff --git a/README.md b/README.md index ef71c1c..616d4b8 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# PyOptional +# Optional.py An Implementation of the Optional Object for Python ## Why diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..224a779 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..847b00c --- /dev/null +++ b/setup.py @@ -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='crbefus@gmail.com', + url='https://github.com/cbefus/optional.py', + license=license, + packages=find_packages(exclude=('test')) +)