-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 845 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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="Aidantic",
version="1.0.1",
author="AivanF.",
author_email="projects@aivanf.com",
description=(
"Data parsing and validation with OneOf"
" using Python type hints"
),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AivanF/Aidantic",
packages=["aidantic"],
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Text Processing",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: Freely Distributable",
],
)