-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (45 loc) · 1.32 KB
/
setup.py
File metadata and controls
48 lines (45 loc) · 1.32 KB
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
from setuptools import setup, find_packages
with open("CHANGELOG.txt", "r", encoding="utf-8") as f:
cl = f.read()
VERSION = cl.split("\"")[1]
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: Microsoft :: Windows :: Windows 11',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3.11'
]
setup(
name='ontologytoapi',
version=VERSION,
description='Multi purpose API Generator based on an Ontology Framework.',
long_description=
f"{open('README.md').read()}\n\n" +
f"{open('CHANGELOG.txt').read()}\n\n",
long_description_content_type="text/markdown",
url='https://github.com/JCGCosta/OntologyToAPI',
author='Júlio César Guimarães Costa',
author_email='juliocesargcosta123@gmail.com',
license='MIT License',
classifiers=classifiers,
keywords=['Ontology', 'API'],
packages=find_packages(),
install_requires=[
"SQLAlchemy",
"pydantic",
"requests",
"pymongo",
"rdflib",
"fastapi",
"uvicorn",
"python-multipart",
"asyncio",
"unqlite",
"asyncpg",
"aiomysql",
"aiosqlite",
"motor",
"aiofiles"
]
)