-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
55 lines (53 loc) · 1.89 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
47
48
49
50
51
52
53
54
55
from setuptools import setup, find_packages
with open("README.md") as read_file:
long_description = read_file.read()
setup(
author = 'Lukas Heinrich, Matthew Feickert',
author_email = '[email protected], [email protected]',
name = 'yadage-schemas',
version = '0.11.1',
description = 'schemas for yadage and packtivity',
long_description = long_description,
long_description_content_type = "text/markdown",
include_package_data = True,
packages = find_packages(),
python_requires=">=3.7",
install_requires = [
'jsonref',
'pyyaml',
'requests[security]>=2.9',
'jsonschema<=4.9.1', # c.f. https://github.com/yadage/yadage-schemas/issues/38
'click',
'six>=1.4.0', # six.moves added in six v1.4.0
'importlib-resources>=5.10;python_version<"3.9"' # for accessing package filepaths
],
extras_require = {
'develop': [
'pyflakes',
'pytest>=3.2.0',
'pytest-cov>=2.5.1',
'python-coveralls'
]
},
entry_points = {
'console_scripts': [
'yadage-validate=yadageschemas.validatecli:main',
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"Operating System :: OS Independent",
]
)