-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
44 lines (38 loc) · 986 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python3
# coding=utf-8
from setuptools import setup
from os import system
version = '1.1.2'
setup(
name='turtle_pil',
packages=['turtle_pil'],
install_requires=[
'pillow',
],
version=version,
description='Turtle operations on the top of PIL',
long_description='Turtle operations on the top of PIL',
author='Jordi Petit',
url='https://github.com/jutge-org/pil-turtle',
download_url='https://github.com/jutge-org/pil-turtle/tarball/{}'.format(version),
keywords=['jutge', 'jutge.org', 'education', 'turtle', 'PIL'],
license='Apache',
zip_safe=False,
include_package_data=True,
setup_requires=['setuptools'],
entry_points={
'console_scripts': [
]
},
scripts=[
]
)
# Steps to try new version:
# -------------------------
#
# pip3 uninstall --yes pil-turtle
# pip3 install .
# Steps to distribute new version:
# --------------------------------
#
# see upload.sh script