We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1edfcd commit a7d543dCopy full SHA for a7d543d
1 file changed
setup.py
@@ -1,13 +1,13 @@
1
-from distutils.core import setup
+import setuptools
2
3
with open("README.md", "r") as fh:
4
long_description = fh.read()
5
6
7
-setup(
+setuptools.setup(
8
name = 'OctopusAgile', # How you named your package folder (MyLib)
9
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
+ version = '0.0.2', # Start with a small number and increase it with every change you make
11
license='apache-2.0', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
12
description = 'A library to interface with the Octopus Agile API', # Give a short description about your library
13
long_description=long_description,
0 commit comments