-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (40 loc) · 1.45 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
44
45
46
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
with open('HISTORY.md') as history_file:
history = history_file.read()
requirements = ['appdirs', 'PyQt5', 'click', 'requests']
setup_requirements = [ ]
test_requirements = [ ]
setup(
author="Michael Andrec/Ukrainian History and Education Center",
author_email='m.andrec@ukrhec.org',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
],
description="Alternative opinionated GUI for FADGI BWFMetaEdit",
entry_points={
'console_scripts': [
'autoBWF=autoBWF.autoBWF:main',
'autolame=autoBWF.autolame:main',
'autosplice=autoBWF.autosplice:main',
'bwf2pbcore=autoBWF.bwf2pbcore:main',
'bwf2csv=autoBWF.bwf2csv:main',
'label2ohms=autoBWF.label2ohms:main',
'bwf2grist=autoBWF.bwf2grist:cli'
],
},
install_requires=requirements,
license="GNU General Public License v3",
long_description=readme + '\n\n' + history,
long_description_content_type="text/markdown",
include_package_data=True,
name='autoBWF',
packages=find_packages(include=['autoBWF']),
setup_requires=setup_requirements,
url='https://github.com/Ukrainian-History/autoBWF',
version='3.9',
zip_safe=False,
)