-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (31 loc) · 1.02 KB
/
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
33
34
import os
from setuptools import setup, find_packages
def read(fname):
'''Read a file's contents'''
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except StandardError:
return ""
setup(
name="morpheus",
version="0.0.5",
author="Ziad Sawalha",
author_email="ziad@sawalha.com",
description="Dict schema helper for schema-free projects",
license="Apache 2.0",
keywords="schema NoSQL validation migration",
url="http://github.com/ziadsawalha/morpheus",
packages=find_packages(exclude=['*.tests']),
long_description=read('README.rst'),
classifiers=[
"Development Status :: 1 - Planning",
'Natural Language :: English',
"Topic :: Utilities",
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Database',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python',
],
)