fenrir/setup.py

50 lines
1.0 KiB
Python
Raw Permalink Normal View History

#!/bin/python
import os
from setuptools import find_packages
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
# Application name:
name="fenrir",
# Version number (initial):
version="0.1a",
# Application author details:
author="Chrys and others",
2016-10-04 17:46:02 -04:00
author_email="chrys87@web.de",
# Packages
2016-10-05 14:04:14 -04:00
packages=find_packages('fenrir'),
2016-10-05 12:44:49 -04:00
package_dir={'': 'src/fenrir'},
2016-10-05 14:04:14 -04:00
scripts=['src/fenrir/fenrir'],
#entry_points = {
# "console_scripts": ['fenrir = fenrir:main']
# },
# Include additional files into the package
include_package_data=True,
# Details
url="https://github.com/chrys87/fenrir/",
zip_safe=False,
#
# license="MIT",
2016-10-04 17:46:02 -04:00
description="An TTY Screen Reader For Linux.",
long_description=read('README.md'),
classifiers=[
"Development Status :: 3 - Alpha",
],
# Dependent packages (distributions)
install_requires=[
"evdev",
"sox",
2016-10-04 17:46:02 -04:00
"python-espeak"
],
)