forked from DevDungeon/NanoLifePy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (27 loc) · 779 Bytes
/
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
30
31
32
import os
from setuptools import setup
def readme_file_contents():
readme_path = os.path.join(os.path.dirname(os.path.realpath(__file__)),
'README.rst')
with open(readme_path) as readme_file:
file_contents = readme_file.read()
return file_contents
setup(
name='nanolife',
version='1.0.3',
description='Conway\'s Game of Life implemented with PyGame.',
long_description=readme_file_contents(),
url='https://github.com/DevDungeon/PyGameOfLife',
author='DevDungeon',
author_email='nanodano@devdungeon.com',
license='GPL-3.0',
packages=['nanolife'],
scripts=[
'bin/nanolife',
'bin/nanolife.bat',
],
zip_safe=False,
install_requires=[
'pygame'
]
)