This repository has been archived by the owner on Jun 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (47 loc) · 1.45 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# coding=utf-8
import os
__author__ = 'paoolo'
try:
from setuptools import setup
except ImportError:
print 'No setuptools installed, use distutils'
from distutils.core import setup
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='atmosphere-python-client',
packages=[
'atmosphere',
'atmosphere.appliance',
'atmosphere.machine',
'atmosphere.mapping',
'atmosphere.property'
],
package_dir={
'atmosphere': 'src/atmosphere',
'atmosphere.appliance': 'src/atmosphere/appliance',
'atmosphere.machine': 'src/atmosphere/machine',
'atmosphere.mapping': 'src/atmosphere/mapping',
'atmosphere.property': 'src/atmosphere/property'
},
install_requires=required,
version='1.0',
description='Atmosphere REST API client written in python',
author=u'Paweł Suder',
author_email='[email protected]',
url='https://github.com/dice-cyfronet/atmosphere-python-client',
download_url='https://github.com/dice-cyfronet/atmosphere-python-client/archive/master.zip',
keywords=[
'atmosphere'
],
classifiers=[
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: Other/Proprietary License',
'Operating System :: OS Independent',
],
long_description='''\
'''
)