make setup.py initial work
This commit is contained in:
parent
e39a5b301c
commit
cb72dd0779
48
setup.py
Executable file
48
setup.py
Executable file
@ -0,0 +1,48 @@
|
|||||||
|
#!/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",
|
||||||
|
author_email="chrys87@web.de",
|
||||||
|
|
||||||
|
# Packages
|
||||||
|
packages=find_packages('src/fenrir'),
|
||||||
|
package_dir={'': 'src/fenrir'},
|
||||||
|
scripts=['src/fenrir/fenrir','src/fenrir/fenrir-daemon'],
|
||||||
|
#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",
|
||||||
|
description="An TTY Screen Reader For Linux.",
|
||||||
|
long_description=read('README.md'),
|
||||||
|
classifiers=[
|
||||||
|
"Development Status :: 3 - Alpha",
|
||||||
|
],
|
||||||
|
# Dependent packages (distributions)
|
||||||
|
install_requires=[
|
||||||
|
"evdev",
|
||||||
|
"sox"
|
||||||
|
],
|
||||||
|
|
||||||
|
)
|
||||||
|
|
11
src/fenrir/fenrirVersion.py
Normal file
11
src/fenrir/fenrirVersion.py
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Fenrir TTY screen reader
|
||||||
|
# By Chrys, Storm Dragon, and contributers.
|
||||||
|
|
||||||
|
import os, sys
|
||||||
|
import __main__
|
||||||
|
|
||||||
|
version = 1.5
|
||||||
|
codename = 'gampert'
|
Loading…
Reference in New Issue
Block a user