-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (33 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
from setuptools import setup
setup(
name='gant',
version='0.1.2',
description="The Gluster development helper ant",
long_description="The Gluster development helper ant, gant for short, helps in the development of GlusterFS by creating a standardized development and testing environment using Docker.",
keywords='gluster docker utility development testing',
author='Kaushal M',
author_email='[email protected]',
url='https://github.com/kshlm/gant',
license='BSD',
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: BSD License",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Topic :: Utilities",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 3",
],
packages=['gant', 'gant.utils'],
install_requires=[
"docker-py",
"click",
],
entry_points="""
[console_scripts]
gant = gant.main:main
""",
)