Skip to content
Snippets Groups Projects
Commit f7255464 authored by Jonas Eppelt's avatar Jonas Eppelt
Browse files

switching to pyproject.toml

parent abb2d076
No related branches found
No related tags found
1 merge request!9Toml
[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
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',
],
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment