Skip to content
This repository was archived by the owner on Aug 25, 2024. It is now read-only.

Commit 3bbf005

Browse files
author
mathijs
committed
first steps towards PyPi upload
1 parent a938418 commit 3bbf005

4 files changed

Lines changed: 26 additions & 0 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.idea/
2+
build/
3+
dist/
4+
TransIp_Restfull_API.egg-info/

README.md

Whitespace-only changes.

__init__.py

Whitespace-only changes.

setup.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import setuptools
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
7+
name="TransIp-Restfull-API", # Replace with your own username
8+
version="0.0.1",
9+
author="Mathijs Westerhof",
10+
author_email="[email protected]",
11+
description="A python package to connect to the TransIp restfull API",
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
url="https://github.com/mathijswesterhof/TransIp_Rest_api_python",
15+
packages=setuptools.find_packages(),
16+
classifiers=[
17+
"Programming Language :: Python :: 3",
18+
"License :: GNU GPLv3 License",
19+
"Operating System :: OS Independent",
20+
],
21+
python_requires='>=3.6',
22+
)

0 commit comments

Comments
 (0)