-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (28 loc) · 853 Bytes
/
setup.py
File metadata and controls
35 lines (28 loc) · 853 Bytes
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
#!/usr/bin/env python
import os
from atmos import __version__
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
desc = {
'name' : 'atmos',
'version' : __version__,
'description' : 'Python API for Atmos cloud storage.',
'url' : 'http://dat.github.com/pyatmos',
'author' : 'Dat Hoang',
'keywords' : ['atmos', 'REST', 'cloud storage'],
'license' : 'GPLv3',
'packages' : ['atmos'],
'test_suite' : 'tests.all_tests',
'classifiers' : (
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
),
}
if __name__=='__main__':
setup(**desc)