Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
Openlobby Server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TO
openlobby
Openlobby Server
Commits
877308de
"src/git@gitlab.pirati.cz:vpfafrin/cf2021.git" did not exist on "26fbc88c1038971e3c4fb48f40eb09ff15816099"
Commit
877308de
authored
7 years ago
by
jan.bednarik
Browse files
Options
Downloads
Patches
Plain Diff
Setup.py update.
parent
b826b694
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+2
-1
2 additions, 1 deletion
.gitignore
setup.py
+15
-42
15 additions, 42 deletions
setup.py
with
17 additions
and
43 deletions
.gitignore
+
2
−
1
View file @
877308de
__pycache__/
__pycache__/
dist/
*.py[cod]
*.py[cod]
.env
.env
.cache/
.cache/
*.egg-info/
*.egg-info/
.coverage
.coverage
.pytest_cache/
.pytest_cache/
.idea
.idea
\ No newline at end of file
This diff is collapsed.
Click to expand it.
setup.py
+
15
−
42
View file @
877308de
...
@@ -13,57 +13,30 @@ with open(path.join(here, 'README.md'), encoding='utf-8') as f:
...
@@ -13,57 +13,30 @@ with open(path.join(here, 'README.md'), encoding='utf-8') as f:
setup
(
setup
(
name
=
'
openlobby
'
,
name
=
'
openlobby
'
,
version
=
'
0.1.0
'
,
version
=
'
0.1.0
'
,
description
=
'
Open Lobby Server
'
,
long_description
=
long_description
,
url
=
'
https://github.com/openlobby/openlobby-server
'
,
url
=
'
https://github.com/openlobby/openlobby-server
'
,
author
=
'
Jan Bednařík
'
,
author
=
'
Jan Bednarik
'
,
author_email
=
'
jan.bednarik@gmail.com
'
,
author_email
=
'
jan.bednarik@gmail.com
'
,
license
=
'
MIT
'
,
packages
=
find_packages
(
exclude
=
[
'
tests
'
]),
)
# TODO
description
=
'
Open Lobby Server
'
,
"""
long_description
=
long_description
,
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'
Development Status :: 3 - Alpha
'
,
# Indicate who your project is intended for
packages
=
find_packages
(
exclude
=
[
'
tests
'
]),
'
Intended Audience :: Developers
'
,
'
Topic :: Software Development :: Build Tools
'
,
# Pick your license as you wish (should match
"
license
"
above)
# TODO
'
License :: OSI Approved :: MIT License
'
,
# install_requires=[],
# extras_require={
# 'dev': [],
# 'test': [],
# },
# Specify the Python versions you support here. In particular, ensure
license
=
'
MIT
'
,
# that you indicate whether you support Python 2, Python 3 or both.
classifiers
=
[
'
Development Status :: 4 - Beta
'
,
'
License :: OSI Approved :: MIT License
'
,
'
Programming Language :: Python :: 3
'
,
'
Programming Language :: Python :: 3
'
,
'
Programming Language :: Python :: 3.3
'
,
'
Programming Language :: Python :: 3.3
'
,
'
Programming Language :: Python :: 3.4
'
,
'
Programming Language :: Python :: 3.4
'
,
'
Programming Language :: Python :: 3.5
'
,
'
Programming Language :: Python :: 3.5
'
,
],
],
# What does your project relate to?
keywords=
'
sample setuptools development
'
,
# List run-time dependencies here. These will be installed by pip when
# your project is installed. For an analysis of
"
install_requires
"
vs pip
'
s
# requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=[
'
peppercorn
'
],
# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,
# for example:
# $ pip install -e .[dev,test]
extras_require={
'
dev
'
: [
'
check-manifest
'
],
'
test
'
: [
'
coverage
'
],
},
)
)
"""
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment