* 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): class FASError(Exception):
'''FAS Error''' '''FAS Error'''
pass pass

View file

@ -1,14 +1,18 @@
# Release information about fas '''
Release information about the Fedora Accounts System
'''
version = "1.0" VERSION = '0.1'
NAME = 'fas'
# description = "Your plan to rule the world" DESCRIPTION = 'The Fedora Account System'
# long_description = "More description about your plan" LONG_DESCRIPTION = '''
# author = "Your Name Here" Manage the accounts of contributors to the Fedora Project.
# email = "YourEmail@YourDomain" '''
# copyright = "Vintage 2006 - a good year indeed" 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 # if it's open source, you might want to specify these
# url = "http://yourcool.site/" URL = 'https://admin.fedoraproject.org/accounts/'
# download_url = "http://yourcool.site/download" DOWNLOAD_URL = 'https://fas2.fedorahosted.org/'
# license = "MIT" LICENSE = 'GPLv2'