-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (19 loc) · 733 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (19 loc) · 733 Bytes
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
#! /usr/bin/env python3.6
from setuptools.command.install import install
from setuptools import setup, find_packages
import subprocess as sbp
class MakeLife(install):
def run(self):
sbp.run(["make"])
install.run(self)
setup(name='conway',
version='1.0.0',
packages=find_packages(exclude=['*.tests', '*.tests.*',
'tests.*', 'tests']),
package_dir={'conway': 'conway'},
url='https://github.com/jandersen7/conway',
author="John Andersen",
author_email="johnandersen185@gmail.com",
description="Some fun with conway's game of life! Try out some celullar automata.",
install_requires=[],
cmdclass={'install': MakeLife})