-
-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 1.13 KB
/
setup.py
File metadata and controls
28 lines (25 loc) · 1.13 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
# coding: utf-8
import os
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
name = 'visualpython'
setup(
name = name,
version = '3.0.2',
packages = find_packages(),
package_data = {"": ["*"], 'visualpython' : ['visualpython.yaml', 'README.md']},
scripts = ['visualpython/bin/visualpy', 'visualpython/bin/visualpy.bat'],
description = 'Visual Python is a GUI-based Python code generator, developed on the Jupyter Notebook as an extension.',
long_description_content_type = 'text/markdown',
long_description = long_description,
author = 'Black Logic Co.,Ltd.',
url = 'https://github.com/visualpython/visualpython',
license = 'GPLv3',
install_requires = [],
platforms = "Linux, Mac OS X, Windows",
keywords = ['VisualPython', 'visualpython', 'visual python', 'Visual Python', 'Visual', 'visual'],
python_requires = '>=3.6',
)