Merge branch 'master' of https://code.grnet.gr/git/pithos
[pithos] / tools / setup.py
1 #!/usr/bin/env python
2
3 import os
4
5 from setuptools import setup, find_packages
6
7 VERSION = os.popen("git describe --abbrev=0 --tags").read().strip(' \nv')
8
9 setup(
10     name='Pithos Tools',
11     version=VERSION,
12     description='Pithos file storage service tools',
13     author='GRNET',
14     author_email='pithos@grnet.gr',
15     url='http://code.grnet.gr/projects/pithos',
16     scripts=['pithos-sh', 'pithos-sync', 'pithos-fs'],
17     packages=['lib'],
18     license='BSD',
19     classifiers=[
20         'Development Status :: 3 - Alpha',
21         'Operating System :: OS Independent',
22         'Programming Language :: Python',
23         'Topic :: Utilities',
24         'License :: OSI Approved :: BSD License',
25     ]
26 )