forked from hearsaycorp/normalize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 934 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
32
from setuptools import find_packages, setup
try:
with open("README.rst", "ro") as readme:
lines = []
for line in readme:
lines.append(line)
if "...and much more" in line:
break
long_description = "".join(lines)
except:
long_description = """
This module lets you declare classes and object properties, and then
get support for marshaling to and from JSON data. You can also compare
objects to see if they have changed in meaningful ways.
"""
setup(
author='Hearsay Labs, Inc',
author_email='[email protected]',
description="Declarative Python meta-model system and visitor utilities",
license='MIT',
long_description=long_description,
name='normalize',
packages=find_packages(),
install_requires=('richenum>=1.0.0',),
test_suite="run_tests",
version='0.9.2',
url="http://hearsaycorp.github.io/normalize",
)