root / setup.py @ a4c10cbc
History | View | Annotate | Download (355 Bytes)
1 |
#!/usr/bin/env python
|
---|---|
2 |
|
3 |
#from distutils.core import setup
|
4 |
from setuptools import setup |
5 |
|
6 |
from pithos import __version__ as version |
7 |
|
8 |
setup( |
9 |
name='Pithos',
|
10 |
version=version, |
11 |
description='Pithos file storage service',
|
12 |
author='GRNET',
|
13 |
author_email='pithos@grnet.gr',
|
14 |
url='http://code.grnet.gr/projects/pithos',
|
15 |
packages=['pithos'],
|
16 |
) |