forked from ruslux/validate-it
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (36 loc) · 1.25 KB
/
setup.py
File metadata and controls
41 lines (36 loc) · 1.25 KB
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
41
from os import path
from setuptools import setup, find_packages
version = "0.10.1"
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="validate-it",
packages=find_packages(exclude=('benchmarks', 'tests')),
version=version,
description="Schema validator built on top of the typing module",
long_description=long_description,
long_description_content_type='text/markdown',
author="Ruslan Roskoshnyj",
author_email="i.am.yarger@gmail.com",
url="https://github.com/ruslux/validate_it",
download_url="https://github.com/ruslux/validate_it/archive/{}.tar.gz".format(version),
keywords=["schema", "validator", "json", "typing", "annotations"],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
python_requires=">=3.6.0,>=3.7.0",
platforms=["OS Independent"],
license="LICENSE.txt",
install_requires=[],
extras_require={
"tests": [
"pytest (==3.4.0)",
"coverage (==4.5)",
"pytest-cov (==2.5.1)",
]
}
)