We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5901ad8 + f924afd commit 5b91e19Copy full SHA for 5b91e19
3 files changed
README.md
@@ -1,4 +1,4 @@
1
-# PyOptional
+# Optional.py
2
An Implementation of the Optional Object for Python
3
4
## Why
setup.cfg
@@ -0,0 +1,2 @@
+[metadata]
+description-file = README.md
setup.py
@@ -0,0 +1,20 @@
+from setuptools import setup, find_packages
+
+with open('README.md') as f:
5
+ readme = f.read()
6
7
+with open('LICENSE') as f:
8
+ license = f.read()
9
10
+setup(
11
+ name='optional.py',
12
+ version='0.1.0',
13
+ description='An implementation of the Optional object in Python',
14
+ long_description=readme,
15
+ author='Chad Befus',
16
+ author_email='crbefus@gmail.com',
17
+ url='https://github.com/cbefus/optional.py',
18
+ license=license,
19
+ packages=find_packages(exclude=('test'))
20
+)
0 commit comments