Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
BB2ETP
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
Jonas Eppelt
BB2ETP
Commits
f7255464
Commit
f7255464
authored
5 months ago
by
Jonas Eppelt
Browse files
Options
Downloads
Patches
Plain Diff
switching to pyproject.toml
parent
abb2d076
No related branches found
Branches containing commit
No related tags found
1 merge request
!9
Toml
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pyproject.toml
+25
-0
25 additions, 0 deletions
pyproject.toml
setup.py
+0
-19
0 additions, 19 deletions
setup.py
with
25 additions
and
19 deletions
pyproject.toml
0 → 100644
+
25
−
0
View file @
f7255464
[build-system]
requires
=
["setuptools>
=
42
", "
wheel
"]
build-backend
=
"setuptools.build_meta"
[project]
name
=
"bb2etp"
version
=
"0.1.0"
description
=
"A description of your module"
authors
=
[
{
name
=
"Jonas Eppelt"
,
email
=
"jonas.eppelt@kit.edu"
}
]
[tool.setuptools]
packages
=
[
"find:"
]
[project.classifiers]
classifiers
=
[
"Development Status :: 3 - Alpha"
,
"Intended Audience :: Developers"
,
"License :: OSI Approved :: MIT License"
,
"Programming Language :: Python :: 3"
,
"Programming Language :: Python :: 3.6"
,
"Programming Language :: Python :: 3.7"
,
"Programming Language :: Python :: 3.8"
]
\ No newline at end of file
This diff is collapsed.
Click to expand it.
setup.py
deleted
100644 → 0
+
0
−
19
View file @
abb2d076
from
setuptools
import
setup
,
find_packages
setup
(
name
=
'
bb2etp
'
,
version
=
'
0.1.0
'
,
author
=
'
Jonas Eppelt
'
,
author_email
=
'
jonas.eppelt@kit.edu
'
,
description
=
'
A description of your module
'
,
packages
=
find_packages
(),
classifiers
=
[
'
Development Status :: 3 - Alpha
'
,
'
Intended Audience :: Developers
'
,
'
License :: OSI Approved :: MIT License
'
,
'
Programming Language :: Python :: 3
'
,
'
Programming Language :: Python :: 3.6
'
,
'
Programming Language :: Python :: 3.7
'
,
'
Programming Language :: Python :: 3.8
'
,
],
)
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