Skip to content

Commit

Permalink
new download_url, more classifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
JnyJny committed Oct 27, 2015
1 parent 62ea39b commit d4597b6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,20 @@
except FileNotFoundError:
version = '0.0.0'

download_url = 'https://github.com/JnyJny/GameOfLife/archive/{}.tar.gz'

setup(name='GameOfLife',
version=version,
description = "Conway's Game of Life - Cellular Automata.",
long_description = long_description,
url = 'https://github.com/JnyJny/GameOfLife',
download_url = 'https://github.com/JnyJny/GameOfLife/archive/master.zip',
download_url = download_url.format(version),
author="Erik O'Shaughnessy",
author_email="erik.oshaughnessy@gmail.com",
license='MIT',
classifiers=[ 'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Operating System :: POSIX',
'Environment :: Console :: Curses',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Mathematics',
Expand Down

0 comments on commit d4597b6

Please sign in to comment.