* Fill in the rest of the release information and make use of it to tell the

version.
This commit is contained in:
Toshio Kuratomi 2008-03-08 12:46:01 -08:00
parent 83167723c4
commit a2ad0b8723
2 changed files with 18 additions and 11 deletions

View file

@ -1,3 +1,6 @@
from fas import release
__version__ = release.VERSION
class FASError(Exception):
'''FAS Error'''
pass

View file

@ -1,14 +1,18 @@
# Release information about fas
'''
Release information about the Fedora Accounts System
'''
version = "1.0"
# description = "Your plan to rule the world"
# long_description = "More description about your plan"
# author = "Your Name Here"
# email = "YourEmail@YourDomain"
# copyright = "Vintage 2006 - a good year indeed"
VERSION = '0.1'
NAME = 'fas'
DESCRIPTION = 'The Fedora Account System'
LONG_DESCRIPTION = '''
Manage the accounts of contributors to the Fedora Project.
'''
AUTHOR = 'Ricky Zhou, Mike McGrath, and Toshio Kuratomi'
EMAIL = 'fedora-infrastructure-list@fedoraproject.org'
COPYRIGHT = '2007-2008 Red Hat, Inc.'
# if it's open source, you might want to specify these
# url = "http://yourcool.site/"
# download_url = "http://yourcool.site/download"
# license = "MIT"
URL = 'https://admin.fedoraproject.org/accounts/'
DOWNLOAD_URL = 'https://fas2.fedorahosted.org/'
LICENSE = 'GPLv2'