forked from ceph/shaman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (43 loc) · 1.17 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
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name='shaman',
version='0.1',
description='',
author='Alfredo Deza',
author_email='[email protected]',
license = "MIT",
install_requires=[
"pecan",
"sqlalchemy",
"psycopg2",
"pecan-notario",
"requests",
"jinja2",
"pika",
],
test_suite='shaman',
zip_safe=False,
include_package_data=True,
packages=find_packages(exclude=['ez_setup']),
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Utilities',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
],
entry_points="""
[pecan.command]
populate=shaman.commands.populate:PopulateCommand
"""
)