-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
35 lines (29 loc) · 862 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
33
34
35
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
VERSION = '0.1.5'
requires = [
"colander==1.4.0",
"pycountry==17.9.23"
]
extras_require = {
"test": [
"nose",
"coverage",
"flake8",
"codeclimate-test-reporter"
]
}
setup(name='jsonresume-validator',
version=VERSION,
description='validates JSON resumes',
author='Kelvin Tay',
author_email='[email protected]',
url='https://github.com/kelvintaywl/jsonresume-validator',
download_url='https://github.com/kelvintaywl/jsonresume-validator/tarball/{}'.format(VERSION),
keywords='jsonresume, validation, colander',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_suite='jsonresume',
install_requires=requires,
extras_require=extras_require)