-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
46 lines (39 loc) · 1.23 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
35
36
37
38
39
40
41
42
43
44
45
46
# -*- coding: utf-8 -*-
"""
sqlalchemy_seed
~~~~~~~~~~~~~~~
sqlalchemy_seed is a simple data seeder using SQLAlchemy.
:copyright: (c) 2018 Shinya Ohyanagi, All rights reserved.
:license: BSD, see LICENSE for more details.
"""
import os
from setuptools import find_packages, setup
requires = ['sqlalchemy', 'pyyaml', 'flake8']
rst_path = os.path.join(os.path.dirname(__file__), 'README.rst')
description = ''
with open(rst_path) as f:
description = f.read()
setup(
name='sqlalchemy_seed',
version='0.3.0',
author='Shinya Ohyanagi',
author_email='[email protected]',
url='http://github.com/heavenshell/py-sqlalchemy_seed',
description='sqlalchemy_seed is simple data seeder using SQLAlchmy.',
long_description=description,
license='BSD',
platforms='any',
packages=find_packages(exclude=('tests',)),
package_dir={'': '.'},
install_requires=requires,
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Database',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
tests_require=requires,
test_suite='tests',
)