forked from MaineKuehn/workshop-collaborative_software
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 1.11 KB
/
setup.py
File metadata and controls
32 lines (29 loc) · 1.11 KB
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, find_packages
repo_base_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(repo_base_dir, 'README.rst'), 'r') as README:
long_description = README.read()
if __name__ == '__main__':
setup(
name="gksolite",
version="0.9.0",
description="gridka school game of life library",
long_description=long_description.strip(),
author="Eileen Kuehn, Max Fischer",
author_email='maxfischer2781@gmail.com',
url='https://github.com/MaineKuehn/workshop-collaborative_software',
packages=find_packages(),
# metadata for package search
license='MIT',
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Education',
'Topic :: Education',
'Programming Language :: Python :: 3 :: Only',
],
keywords='game-of-life gks',
# unit tests
test_suite='gksolite.gksolite_unittests',
)