-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·46 lines (39 loc) · 1.15 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
41
42
43
44
45
46
#!/usr/bin/env python
from setuptools import setup
VERSION = "0.2.9"
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="getschema",
version=VERSION,
description="Get jsonschema from sample records",
long_description=long_description,
long_description_content_type="text/markdown",
author="Daigo Tanaka, Anelen Co., LLC",
url="https://github.com/anelendata/getschema",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
install_requires=[
"setuptools>=40.3.0",
"jsonpath-ng>=1.5.2",
"python-dateutil>=2.8.1",
"simplejson==3.11.1",
"pyyaml>=5.1",
],
entry_points="""
[console_scripts]
getschema=getschema:main
""",
packages=["getschema"],
package_data={
# Use MANIFEST.ini
},
include_package_data=True
)