Skip to content

Commit a7d543d

Browse files
committed
Still working on pypi release
1 parent a1edfcd commit a7d543d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
from distutils.core import setup
1+
import setuptools
22

33
with open("README.md", "r") as fh:
44
long_description = fh.read()
55

66

7-
setup(
7+
setuptools.setup(
88
name = 'OctopusAgile', # How you named your package folder (MyLib)
99
packages = ['OctopusAgile'], # Chose the same as "name"
10-
version = '0.0.1', # Start with a small number and increase it with every change you make
10+
version = '0.0.2', # Start with a small number and increase it with every change you make
1111
license='apache-2.0', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
1212
description = 'A library to interface with the Octopus Agile API', # Give a short description about your library
1313
long_description=long_description,

0 commit comments

Comments
 (0)