-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 1.07 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
30
31
32
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="ninjaturtle",
version="0.1",
author="Simon Davy",
author_email="[email protected]",
description=("A re-implementation of python stdlib's turtle module"),
license="MIT",
keywords="turtle education kids",
url="https://github.com/AllTheWayDown/ninjaturtle",
packages=find_packages(exclude=['tests']),
long_description=read('README.rst'),
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Education",
"Topic :: Games/Entertainment :: Simulation",
],
test_suite="tests"
)