forked from daltonmatos/alchemytools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 1.2 KB
/
setup.py
File metadata and controls
35 lines (31 loc) · 1.2 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
#!/usr/bin/env python
import os
import sys
from setuptools import setup, find_packages
from alchemytools import __version__
BASE_PATH = os.path.dirname(__file__)
setup(
name='Alchemytools',
version=__version__,
description='Alchemytools is a set of helpers to be used in any SQLAlchemy project',
long_description=open(os.path.join(BASE_PATH, 'README.rst')).read(),
author='Dalton Barreto',
author_email='daltonmatos@gmail.com',
url='https://github.com/daltonmatos/alchemytools',
packages=find_packages(),
install_requires=['SQLAlchemy>=0.9.2'],
test_suite='tests',
tests_require=['mock>=1.0.1'] if sys.version_info.major == 2 else [],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)