forked from paulwinex/pw_MultiScriptEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 724 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (21 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(
name="multi_script_editor",
version="6.3.0",
description="Python editor for multiple platforms",
long_description="Python editor for multiple platforms and CG software applications",
classifiers=[
"Development Status :: Release 6.3.0",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3+",
],
keywords="python ide script_editor",
url="https://github.com/charliewales/pw_MultiScriptEditor",
author="Carlos Rico",
author_email="carlos.rico.3d@gmail.com",
license="MIT",
packages=find_packages(),
install_requires=[],
include_package_data=True,
zip_safe=False,
)