-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (25 loc) · 1.01 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from gameoflife import __version__
setup(name='gameoflife',
version=__version__,
license='MIT',
description="Conway's Game of Life",
long_description=open('README.md').read(),
keywords='gameoflife game of life conway',
url='https://github.com/wlof/gameoflife',
author='wlof',
author_email='wlof42@gmail.com',
packages=find_packages(),
classifiers=['Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4'],
entry_points={
'console_scripts': ['gameoflife = gameoflife.ui:main']
})