-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 983 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 983 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
26
27
28
29
30
31
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="turtlepower",
version="0.1",
author="Simon Davy",
author_email="bloodearnest@gmail.com",
description=("A tool for advanced use of the turtle module"),
license="MIT",
keywords="turtle education kids",
url="https://github.com/AllTheWayDown/turtlepower",
packages=find_packages(),
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",
"Topic :: Education",
"Topic :: Games/Entertainment :: Simulation",
],
)