-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (36 loc) · 1.1 KB
/
setup.py
File metadata and controls
37 lines (36 loc) · 1.1 KB
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
from setuptools import setup, find_packages
setup(
name='spiceditor',
version='0.0.8',
packages=find_packages(where='src'), # Specify src directory
package_dir={'': 'src'}, # Tell setuptools that packages are under src
install_requires=[
'pyqt5',
'pymupdf >= 1.18.17',
'autopep8',
'scipy',
'qtconsole',
'termqt',
'easyconfig2',
'pyshortcuts'
],
author='Danilo Tardioli',
author_email='dantard@unizar.es',
description='Spice is a Python IDE for students',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/dantard/coder',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.10',
entry_points={
'console_scripts': [
'spice=spiceditor.spice:main',
'spiceterm=spiceditor.spiceterm:main',
'spiceinstall=spiceditor.install:create_shortcuts'
],
}
)