fenrir/setup.py

58 lines
1.7 KiB
Python
Raw Normal View History

#!/bin/python
2017-05-23 11:00:46 -04:00
#https://python-packaging.readthedocs.io/en/latest/minimal.html
import os
from setuptools import find_packages
from setuptools import setup
2017-07-25 07:48:55 -04:00
fenrirVersion = '1.5'
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
# Application name:
name="fenrir",
# Version number (initial):
2017-07-25 07:48:55 -04:00
version=fenrirVersion,
2017-07-25 04:58:37 -04:00
# description
description="An TTY Screen Reader For Linux.",
long_description=read('README.md'),
2017-07-25 07:50:34 -04:00
keywords=['screenreader', 'a11y', 'accessibility', 'terminal', 'TTY', 'console'],
2017-07-25 04:58:37 -04:00
license="License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
url="https://github.com/chrys87/fenrir/",
2017-07-25 07:48:55 -04:00
download_url = 'https://github.com/chrys87/fenrir/archive/' + fenrirVersion + '.tar.gz',
2017-07-25 04:58:37 -04:00
classifiers=[
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
2017-07-25 07:48:55 -04:00
"Topic :: Multimedia :: Sound/Audio :: Speech",
2017-07-25 04:58:37 -04:00
"Environment :: Console",
],
# Application author details:
2017-05-25 07:59:59 -04:00
author="Chrys, storm_dragon, Jeremiah and others",
2017-07-25 04:58:37 -04:00
author_email="chrysg@linux-a11y.org",
# Packages
packages=find_packages('src/fenrir'),
2016-10-05 12:44:49 -04:00
package_dir={'': 'src/fenrir'},
2016-11-16 07:43:13 -05:00
scripts=['src/fenrir/fenrir','src/fenrir/fenrir-daemon'],
# Include additional files into the package
include_package_data=True,
zip_safe=False,
2017-07-25 10:59:19 -04:00
2017-07-25 11:01:05 -04:00
data_files=[('/etc/fenrir', ['config/*']),
2017-07-25 10:59:19 -04:00
],
2017-07-25 04:58:37 -04:00
# Dependent packages (distributions)
install_requires=[
"evdev",
2017-07-25 04:58:37 -04:00
"sox",
2017-07-25 09:35:49 -04:00
"dbus-python",
2017-07-25 09:44:42 -04:00
"pyenchant",
2017-07-25 09:58:02 -04:00
"pyudev",
2017-07-25 09:19:13 -04:00
"setuptools",
],
)