File tree Expand file tree Collapse file tree 3 files changed +23
-1
lines changed
Expand file tree Collapse file tree 3 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 1- # PyOptional
1+ # Optional.py
22An Implementation of the Optional Object for Python
33
44## Why
Original file line number Diff line number Diff line change 1+ [metadata]
2+ description-file = README.md
Original file line number Diff line number Diff line change 1+ from setuptools import setup , find_packages
2+
3+
4+ 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+ )
You can’t perform that action at this time.
0 commit comments