-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (40 loc) · 1.26 KB
/
Copy pathsetup.py
File metadata and controls
41 lines (40 loc) · 1.26 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
36
37
38
39
40
41
from setuptools import setup, find_packages
setup(
name='nameko-autocrud',
version='0.2.0',
description='Autocrud utility for nameko services',
author='timbu',
url='http://github.com/timbu/nameko-autocrud',
packages=find_packages(exclude=['test', 'test.*']),
install_requires=[
"nameko>=2.6.0",
"sqlalchemy>=1.0.16",
"sqlalchemy_filters>=0.4.0",
"python-dateutil>=2.6.1",
"sqlalchemy-utils>=0.32.5",
],
extras_require={
'dev': [
"coverage==4.0.3",
"flake8==2.5.4",
"pylint==1.5.5",
"pytest==3.0.5",
"nameko_sqlalchemy>=0.1.0",
]
},
zip_safe=True,
license='Apache License, Version 2.0',
classifiers=[
"Programming Language :: Python",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
]
)