Skip to content

Commit

Permalink
馃敡 Add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
victor-o-silva committed Sep 30, 2019
1 parent a8c8617 commit 30099b9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions setup.py
@@ -0,0 +1,21 @@
from setuptools import setup

with open('README.rst', 'r') as readme_file:
readme_txt = readme_file.read()

setup(
name='simple-specification',
packages=['simple_specification'],
version='0.1',
description='A simple pythonic implementation of the Specification Pattern for Python 3.7 or higher.',
long_description=readme_txt,
long_description_content_type='text/x-rst',
author='Victor Oliveira da Silva',
author_email='victor_o_silva@hotmail.com',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
],
url='https://github.com/victor-o-silva/simple-specification',
download_url='https://github.com/victor-o-silva/simple-specification/tarball/0.1'
)

0 comments on commit 30099b9

Please sign in to comment.