Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
36 lines (33 loc) · 998 Bytes

File metadata and controls

36 lines (33 loc) · 998 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
# -*- coding: utf-8 -*-
from setuptools import setup
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md')) as f:
long_description = f.read()
setup(
name='python-qt-live-coding',
version='0.4.2',
packages=['livecoding'],
package_dir={'': 'src'},
url='https://github.com/machinekoder/python-qt-live-coding/',
license='MIT',
author='Alexander Rössler',
author_email='alex@machinekoder.com',
description='Live coding for Python, Qt and QML',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=['six', 'qtpy'],
extras_require={
'dev': [
'pytest',
'pytest-pep8',
'pytest-cov',
'pytest-qt',
'black',
'pre-commit',
]
},
scripts=['bin/python_qt_live_coding'],
include_package_data=True,
)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.