-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 906 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from os import path
from setuptools import setup, find_packages
from pycontract import VERSION
with open(path.join(path.dirname(__file__), 'README.rst')) as f:
readme = f.read()
setup(
name="pycontract",
version=".".join(map(str, VERSION)),
license="MIT",
description="A data contracts system for python loosly modeled after django forms.",
long_description=readme,
url="https://github.com/bigjason/pycontract",
author="Jason Webb",
author_email="bigjasonwebb@gmail.com",
packages=find_packages(),
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 2.7"
],
install_requires = [
"python-dateutil"
]
)