-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·39 lines (37 loc) · 1.05 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
39
from setuptools import setup
import meta
setup(
name = meta.name,
version = meta.version,
description = meta.description,
long_description = meta.long_description,
long_description_content_type = 'text/markdown',
url = meta.url,
author = meta.author,
author_email = meta.author_email,
license = 'Apache 2.0',
packages = [ 'netsblox' ],
include_package_data = True,
install_requires = [
'websocket-client',
'deprecation',
'darkdetect',
'randomname',
'requests',
'gelidum',
'pygame',
'pillow>=8.2', # 8.2 needed for ImageDraw.rounded_rectangle()
'nb2pb>=0.1.14', # our compiler - needs version updates occasionally
'numpy',
'parso',
'jedi',
],
classifiers = [
'Development Status :: 1 - Planning',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Intended Audience :: Education',
'Topic :: Education',
'Topic :: Internet',
],
)