-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (15 loc) · 699 Bytes
/
setup.py
File metadata and controls
17 lines (15 loc) · 699 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from distutils.core import setup
VERSION = '0.2.2'
with open('README.rst') as readme:
setup(name = 'pcd',
packages = ['pcd'],
version = VERSION,
description = 'Python Contract Decorators',
long_description = readme.read(),
license = 'LGPL-3.0',
author = 'Peter Varo',
author_email = 'hello@petervaro.com',
url = 'https://github.com/petervaro/pcd',
keywords = ('contract', 'design', 'testing'),
download_url = 'https://github.com/petervaro/pcd/'
'archive/{}.tar.gz'.format(VERSION))