Skip to content

Commit 85fd748

Browse files
committed
Enabling package build and upload
1 parent 695b647 commit 85fd748

19 files changed

+30
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
.vscode/
2+
dist/
3+
someipy.egg-info/
24
__pycache__

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ['setuptools>=42']
3+
build-backend = 'setuptools.build_meta'

setup.cfg

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
[metadata]
2+
name = someipy
3+
version = 0.0.0
4+
author = Christian H.
5+
author_email = someipy.package@gmail.com
6+
description = A Python package implementing the SOME/IP protocol
7+
long_description = file: README.md
8+
long_description_content_type = text/markdown
9+
url = https://github.com/chrizog/someipy
10+
project_urls =
11+
Bug Tracker = https://github.com/chrizog/someipy/issues
12+
Repository = https://github.com/chrizog/someipy
13+
classifiers =
14+
Intended Audience :: Developers
15+
Operating System :: POSIX :: Linux
16+
Programming Language :: Python :: 3.12
17+
18+
[options]
19+
package_dir =
20+
= src
21+
packages = find:
22+
python_requires = >=3.12
23+
24+
[options.packages.find]
25+
where = src
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)