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
feudalBackend
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
16
Issues
16
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
feudal
feudalBackend
Commits
34f4f6b2
Commit
34f4f6b2
authored
Feb 11, 2020
by
Lukas Burgey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove obsolete setup.py
parent
9e18aaa0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
41 deletions
+0
-41
setup.py
setup.py
+0
-41
No files found.
setup.py
deleted
100644 → 0
View file @
9e18aaa0
#!/usr/bin/env python
import
os
from
setuptools
import
setup
,
find_packages
# allow setup.py to be run from any path
os
.
chdir
(
os
.
path
.
normpath
(
os
.
path
.
join
(
os
.
path
.
abspath
(
__file__
),
os
.
pardir
)))
setup
(
version
=
'0.1.0'
,
name
=
'feudal'
,
description
=
'FEUDAL backend application'
,
url
=
'https://git.scc.kit.edu/feudal'
,
author
=
'Lukas Burgey'
,
author_email
=
'lukas.burgey@student.kit.edu'
,
license
=
'MIT'
,
zip_safe
=
False
,
packages
=
find_packages
(),
include_package_data
=
True
,
package_data
=
{
''
:
[
'*.ico'
,
],
},
scripts
=
[
'manage.py'
,
],
install_requires
=
[
'oic>=0.15.0'
,
'pika==1.0.1'
,
'urllib3>=1.24.0'
,
'Django>=2.1.0'
,
'djangorestframework>=3.9.0'
,
'django-cors-headers>=2.5.0'
,
'django-mysql>=3.0.0'
,
'django-nose>=1.4.6'
,
'django_polymorphic>=2.0.3'
,
'django-rest-polymorphic>=0.1.8'
,
'mysqlclient>=1.4.2.post1'
,
],
)
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