Skip to content

Commit 63719c0

Browse files
author
Elias Nygren
committed
update setup.py
1 parent 3b516e3 commit 63719c0

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

setup.py

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
11
#!/usr/bin/env python
22

3-
from distutils.core import setup
3+
# from distutils.core import setup
4+
from setuptools import setup
45

56
setup(name='UpCloud',
67
version='0.1',
78
description='UpCloud API Client',
89
author='Elias Nygren',
910
author_email='elias.nygren@upcloud.com',
1011
url='https://www.upcloud.com',
11-
packages=['upcloud'],
12-
)
12+
packages=['upcloud', 'upcloud.cloud_manager'],
13+
install_requires=[
14+
'mock==1.0.1',
15+
'py==1.4.26',
16+
'pytest==2.6.4',
17+
'requests==2.6.0',
18+
'responses==0.3.0',
19+
'six==1.9.0'
20+
]
21+
)

0 commit comments

Comments
 (0)