-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (20 loc) · 841 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
import setuptools
with open('README.md', 'r', encoding = ' utf-8') as rm:
long_description = rm.read()
setuptools.setup(
name = 'pjnturtle',
version = '1.0.0',
author = 'Reto Krummenacher',
author_email = '[email protected]',
description = 'Simple Turtle Graphics in Python for Jupyter Notebooks',
long_description = long_description,
long_description_content_type = 'text/markdown',
url = 'https://github.com/RetoKrummenacher/PJNturtle',
# BSD 3-Clause License:
# - http://choosealicense.com/licenses/bsd-3-clause
# - http://opensource.org/licenses/BSD-3-Clause
license='BSD',
packages = ['pjnturtle', 'pjnturtle.common','pjnturtle.resources'],
package_data = {'pjnturtle': ['resources/*.png','resources/*.ttf']},
install_requires = ['Pillow'],
)