Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
django-cas-server
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Samir
django-cas-server
Commits
a071ad46
Commit
a071ad46
authored
Dec 12, 2015
by
Valentin Samir
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update setup.py to be functionnal
parent
9dc18675
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
6 deletions
+16
-6
.gitignore
.gitignore
+1
-0
MANIFEST.in
MANIFEST.in
+0
-3
setup.py
setup.py
+15
-3
No files found.
.gitignore
View file @
a071ad46
*.pyc
*.egg-info
build/
bootstrap3
cas/
db.sqlite3
...
...
MANIFEST.in
View file @
a071ad46
include LICENSE
include README.rst
recursive-include cas_server/templates/*
recursive-include cas_server/locale/*
recursive-include cas_server/static/*
setup.py
View file @
a071ad46
...
...
@@ -9,7 +9,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup
(
name
=
'django-cas-server'
,
version
=
'0.
1
'
,
version
=
'0.
2
'
,
packages
=
[
'cas_server'
],
include_package_data
=
True
,
license
=
'GPLv3'
,
...
...
@@ -24,10 +24,22 @@ setup(
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
,
'Operating System :: OS Independent'
,
'Programming Language :: Python'
,
# Replace these appropriately if you are stuck on Python 2.
'Programming Language :: Python :: 2'
,
'Programming Language :: Python ::
2.7
'
,
'Programming Language :: Python ::
3
'
,
'Topic :: Internet :: WWW/HTTP'
,
'Topic :: Internet :: WWW/HTTP :: Dynamic Content'
,
],
package_data
=
{
'cas_server'
:
[
'templates/cas_server/*'
,
'static/cas_server/*'
,
'locale/*/LC_MESSAGES/*'
,
]
},
keywords
=
[
'django'
,
'cas'
,
'cas3'
,
'server'
,
'sso'
,
'single sign-on'
,
'authentication'
,
'auth'
],
install_requires
=
[
'Django >= 1.7'
,
'requests >= 2.4'
,
'requests_futures >= 0.9.5'
,
'django-picklefield >= 0.3.1'
,
'django-bootstrap3 >= 5.4'
,
'lxml >= 3.4'
],
url
=
"https://github.com/nitmir/django-cas-server"
,
download_url
=
"https://github.com/nitmir/django-cas-server/releases"
,
zip_safe
=
False
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment