Skip to content

Commit c35f7df

Browse files
author
Elias Nygren
committed
add MANIFEST and setup.cfg, change tests -> test
1 parent c9ab65d commit c35f7df

27 files changed

+31
-17
lines changed

MANIFEST.in

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
include *.txt
2+
include README.md
3+
include mkdocs.yml
4+
include tox.ini
5+
recursive-include docs *.md

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,24 @@
33
# from distutils.core import setup
44
from setuptools import setup
55

6-
setup(name='upcloud-api-python',
7-
version='0.1',
8-
description='UpCloud API Client',
9-
author='Elias Nygren',
10-
author_email='elias.nygren@upcloud.com',
11-
url='https://www.upcloud.com',
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-
]
6+
setup(
7+
name='upcloud-api-python',
8+
version='0.1',
9+
description='UpCloud API Client',
10+
author='Elias Nygren',
11+
author_email='elias.nygren@upcloud.com',
12+
maintainer='Elias Nygren',
13+
maintainer_email='elias.nygren@upcloud.com',
14+
url='https://www.upcloud.com',
15+
packages=['upcloud', 'upcloud.cloud_manager'],
16+
download='https://github.com/UpCloudLtd/upcloud-python-api/tarball/v0.1',
17+
license='MIT',
18+
install_requires=[
19+
'mock==1.0.1',
20+
'py==1.4.26',
21+
'pytest==2.6.4',
22+
'requests==2.6.0',
23+
'responses==0.3.0',
24+
'six==1.9.0'
25+
]
2126
)
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)