-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
29 lines (26 loc) · 918 Bytes
/
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
import os.path
from setuptools import find_packages, setup
# the directory containing this file
ROOT = os.path.dirname(__file__)
# the text of the README file
with open(os.path.join(ROOT, "README.md"), "r") as f:
README = f.read()
setup(
name="json_strong_typing",
version="0.1.1",
description="Auxiliary services for working with Python type annotations",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/Kheiron-Medical/strong_typing",
author="Kheiron Medical Technologies",
author_email="levente.hunyadi@kheironmed.com",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
],
packages=find_packages(exclude=("tests",)),
include_package_data=True,
install_requires=["jsonschema"],
)