Update setup.py
This commit is contained in:
parent
1846d6d849
commit
bd4a358123
4
setup.py
4
setup.py
@ -3,6 +3,7 @@
|
|||||||
import os
|
import os
|
||||||
from setuptools import find_packages
|
from setuptools import find_packages
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
fenrirVersion = '1.5'
|
||||||
def read(fname):
|
def read(fname):
|
||||||
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
||||||
|
|
||||||
@ -10,13 +11,14 @@ setup(
|
|||||||
# Application name:
|
# Application name:
|
||||||
name="fenrir",
|
name="fenrir",
|
||||||
# Version number (initial):
|
# Version number (initial):
|
||||||
version="1.5a",
|
version=fenrirVersion,
|
||||||
# description
|
# description
|
||||||
description="An TTY Screen Reader For Linux.",
|
description="An TTY Screen Reader For Linux.",
|
||||||
long_description=read('README.md'),
|
long_description=read('README.md'),
|
||||||
keywords='screenreader a11y accessibility terminal console',
|
keywords='screenreader a11y accessibility terminal console',
|
||||||
license="License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
license="License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
||||||
url="https://github.com/chrys87/fenrir/",
|
url="https://github.com/chrys87/fenrir/",
|
||||||
|
download_url = 'https://github.com/chrys87/fenrir/archive/' + fenrirVersion + '.tar.gz',
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Programming Language :: Python",
|
"Programming Language :: Python",
|
||||||
"Development Status :: 5 - Production/Stable",
|
"Development Status :: 5 - Production/Stable",
|
||||||
|
Loading…
Reference in New Issue
Block a user