Statistics
| Branch: | Tag: | Revision:

root / setup.py @ 0f8ffac4

History | View | Annotate | Download (638 Bytes)

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',
11
    version=VERSION,
12
    description='Pithos file storage service',
13
    author='GRNET',
14
    author_email='pithos@grnet.gr',
15
    url='http://code.grnet.gr/projects/pithos',
16
    packages=find_packages(),
17
    license='BSD',
18
    classifiers=[
19
        'Development Status :: 3 - Alpha',
20
        'Operating System :: OS Independent',
21
        'Programming Language :: Python',
22
        'Topic :: Utilities',
23
        'License :: OSI Approved :: BSD License',
24
    ]
25
)