-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
40 lines (34 loc) · 1.18 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
from setuptools import setup
requires = [
"python-dateutil>=2.8,<2.9",
"jsonschema>=3.0",
'dataclasses>=0.6,<0.9;python_version<"3.7"',
]
package_version = "0.0.16"
def read(f):
return open(f, encoding="utf-8").read()
setup(
name="hologram",
description="JSON schema generation from dataclasses",
long_description=read("README.md"),
long_description_content_type="text/markdown",
packages=["hologram"],
package_data={"hologram": ["py.typed"]},
version=package_version,
author="Connor McArthur, Jacob Beck, Simon Knibbs",
author_email="info@fishtowanalytics.com, simon.knibbs@gmail.com",
url="https://github.com/fishtown-analytics/hologram",
install_requires=requires,
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
],
)