-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 1004 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 1004 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup
import os
_dir = os.path.dirname(os.path.realpath(__file__))
setup(
name="json-schema-env-validator",
version="1.0.7.dev0",
description="",
long_description_content_type="text/markdown",
long_description=open(os.path.join(_dir, "README.md")).read(),
keywords=[],
author="Nathan Van Gheem",
author_email="vangheem@gmail.com",
classifiers=[
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
url="https://github.com/onna/enviral",
packages=["enviral"],
install_requires=["jsonschema"],
extras_require={},
package_data={"": ["*.txt", "*.rst"], "enviral": ["py.typed"]},
entry_points={
"console_scripts": ["json-schema-env-validator=enviral.command:main"]
},
)