forked from ceph/chacra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (40 loc) · 1.11 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
# -*- 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='chacra',
version='0.1',
description='',
author='Alfredo Deza',
author_email='adeza@redhat.com',
license = "MIT",
install_requires=[
"pecan",
"sqlalchemy",
"psycopg2",
"pecan-notario",
],
test_suite='chacra',
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=chacra.commands.populate:PopulateCommand
"""
)