-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
34 lines (31 loc) · 1.06 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
from setuptools import setup
def readme():
with open('README.rst') as fp:
return fp.read()
setup(name='sqla_yaml_fixtures',
description='Load YAML data fixtures for SQLAlchemy',
version='1.2.0',
license='MIT',
author='Eduardo Naufel Schettino',
author_email='[email protected]',
url='https://github.com/schettino72/sqla_yaml_fixtures',
keywords=['fixture', 'sqlalchemy'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Intended Audience :: Developers',
],
packages=['sqla_yaml_fixtures'],
install_requires=[
'SQLAlchemy',
'PyYAML'
],
long_description=readme(),
)