-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
40 lines (32 loc) · 1.06 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
35
36
37
38
39
40
from __future__ import with_statement
import os
from incoming import __version__
from setuptools import setup, find_packages
install_requires = []
description = ''
path = lambda fname: os.path.join(os.path.dirname(__file__), fname)
for file_ in ('README.rst', 'LICENSE.rst', 'CHANGELOG.rst'):
with open(path('%s' % file_)) as f:
description += f.read() + '\n\n'
classifiers = [
"Programming Language :: Python",
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
]
setup(name='incoming',
version=__version__,
url='https://github.com/vaidik/incoming',
packages=find_packages(),
long_description=description,
description=("JSON validation framework for Python."),
author="Vaidik Kapoor",
author_email="[email protected]",
include_package_data=True,
zip_safe=False,
classifiers=classifiers,
install_requires=install_requires,
test_suite='incoming.tests',
tests_require=[
'pytest',
])