Skip to content

Commit cc6e5f2

Browse files
committed
try setuptools
1 parent 80c48f1 commit cc6e5f2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
from distutils.core import setup
1+
from setuptools import setup
22
setup(
33
name = 'gimpscm', # How you named your package folder (MyLib)
44
packages = ['gimpscm'], # Chose the same as "name"
5-
version = '1.1', # Start with a small number and increase it with every change you make
5+
version = '1.2', # Start with a small number and increase it with every change you make
66
license='CC BY-NC 3.0', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
77
description = 'Automatically generate and execute gimp script files', # Give a short description about your library
88
author = 'void4', # Type in your name
99
author_email = '[email protected]', # Type in your E-Mail
1010
url = 'https://github.com/void4/gimpscm', # Provide either the link to your github or to your website
11-
download_url = 'https://github.com/void4/gimpscm/archive/1.1.tar.gz',
11+
download_url = 'https://github.com/void4/gimpscm/archive/1.2.tar.gz',
1212
keywords = ['gimp', 'image', 'editing'], # Keywords that define your package best
1313
install_requires=[],
1414
classifiers=[

0 commit comments

Comments
 (0)