Skip to content

Commit

Permalink
0.0.1-python: Create basic python package for distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
shailshouryya committed Feb 20, 2023
1 parent 2105352 commit 09a4817
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,3 +160,7 @@ Also note that running python files as modules locally creates a `__pycache__` d
├── __init__.py
├── __main__.py
```

## Releases

See the [latest release](https://github.com/shailshouryya/test-project/releases/tag/0.0.1-python) from the [releases page](https://github.com/shailshouryya/test-project/releases)
4 changes: 2 additions & 2 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@


setup(
name = 'test-project',
version = '0.0.0',
name = 'test-project-python',
version = '0.0.1',
description = 'Test project to see how packaging works on PyPI.',
long_description = long_description,
long_description_content_type = 'text/markdown',
Expand Down
2 changes: 2 additions & 0 deletions python/test_project_python/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
__version__ = '0.0.1'

print('Entered test_project_python.__init__ :)')

def function_name():
Expand Down

0 comments on commit 09a4817

Please sign in to comment.