-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
38 lines (35 loc) · 1.08 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
33
34
35
36
37
38
import pathlib
from setuptools import setup
version = pathlib.Path(__file__).parent.absolute()
version = version / 'thonnycontrib/thonny-py5mode/_version.py'
exec(open(version).read())
README = (pathlib.Path(__file__).parent / 'README.md').read_text()
setup(
name='thonny-py5mode',
version=__version__,
description='py5 mode plugin for Thonny',
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/tabreturn/thonny-py5mode',
author='tabreturn',
author_email='[email protected]',
license='WTFPL',
classifiers=[
# https://pypi.org/pypi?%3Aaction=list_classifiers
'Environment :: Plugins',
'Topic :: Multimedia :: Graphics',
'Topic :: Text Editors :: Integrated Development Environments (IDE)'
],
packages=[
'thonnycontrib.backend',
'thonnycontrib.kyanite_theme_syntax',
'thonnycontrib.kyanite_theme_ui',
'thonnycontrib.thonny-py5mode',
'thonnycontrib.thonny-py5mode.py5colorpicker.tkcolorpicker'
],
install_requires=[
'install-jdk==1.1.0',
'py5',
'pyperclip==1.9.0'
]
)