forked from progrium/ginkgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 1005 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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
from ginkgo import __version__
setup(
name='Ginkgo',
version=__version__+"dev",
author='Jeff Lindsay',
author_email='[email protected]',
description='Lightweight service framework',
packages=find_packages(),
setup_requires=['nose'],
tests_require=['nose'],
test_suite='nose.collector',
data_files=[],
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Libraries :: Python Modules",
],
entry_points={
'console_scripts': [
'ginkgo = ginkgo.runner:run_ginkgo',
'ginkgoctl = ginkgo.runner:run_ginkgoctl']},
)