-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (41 loc) · 1.65 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
40
41
42
43
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md', 'r') as rm:
long_desc = rm.read()
setup(
name='soloman',
version='3.1.1',
description='For the love of Artificial Intelligence, Python and QML',
long_description=long_desc,
long_description_content_type='text/markdown',
install_requires=['numpy', 'QtPy', 'pyffmpeg'],
keywords="audio, pyaudio, ffmpeg, qml, pyffmpeg",
url='https://github.com/deuteronomy-works/soloman',
author='Amoh - Gyebi Godwin Ampofo Michael',
author_email='amohgyebigodwin@gmail.com',
project_urls={
"Bug Tracker": "https://github.com/deuteronomy-works/soloman/issues/",
"Documentation": "https://github.com/deuteronomy-works/soloman/wiki/",
"Source Code": "https://github.com/deuteronomy-works/soloman/",
},
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules"
],
packages=[
'soloman', 'soloman.audio', 'soloman.video',
'PyQt5', 'PyQt6', 'PySide2', 'PySide6'
],
package_data={
'PyQt5': ['Qt5/qml/soloman/qmldir', 'Qt5/qml/soloman/*.qml'],
'PyQt6': ['Qt6/qml/soloman/qmldir', 'Qt6/qml/soloman/*.qml'],
'PySide2': ['qml/soloman/qmldir', 'qml/soloman/*.qml'],
'PySide6': ['qml/soloman/qmldir', 'qml/soloman/*.qml']
},
)