* Fill in the rest of the release information and make use of it to tell the
version.
This commit is contained in:
parent
83167723c4
commit
a2ad0b8723
2 changed files with 18 additions and 11 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
from fas import release
|
||||||
|
__version__ = release.VERSION
|
||||||
|
|
||||||
class FASError(Exception):
|
class FASError(Exception):
|
||||||
'''FAS Error'''
|
'''FAS Error'''
|
||||||
pass
|
pass
|
||||||
|
|
|
@ -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'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue