-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
34 lines (31 loc) · 955 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import sqla_helpers
try:
long_description = open('doc/sqla_helpers.rst').read(),
except IOError:
long_description = ''
setup(
name='sqla_helpers',
version=sqla_helpers.__version__,
author='Guillaume Camera',
author_email='[email protected]',
description="Provide some methods for getting objects with SQLAlchemy",
long_description=long_description,
url="https://github.com/moumoutte/sqla_helpers/",
packages=find_packages(),
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Natural Language :: French",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
requires=[
'nose',
'coverage',
'mock',
'sqlalchemy'
]
)