-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 1.09 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
from setuptools import setup
from os import path
this_dir = path.abspath(path.dirname(__file__))
with open(path.join(this_dir, 'README.md')) as f:
long_description = f.read()
setup(
name='fastalchemy',
packages=['fastalchemy'],
version='0.1.3',
license='MIT',
description='A SQLAlchemy middleware for FastAPI',
long_description=long_description,
long_description_content_type='text/markdown',
author='Joseph Kim',
author_email='[email protected]',
url='https://github.com/cloudeyes/fastalchemy',
download_url='https://github.com/cloudeyes/fastalchemy/archive/v0.1.3.tar.gz',
keywords=['fastapi', 'middleware', 'sqlalchemy', 'plugin'],
install_requires=[
'fastapi', 'sqlalchemy',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)