Skip to content

Commit 50c2d2c

Browse files
committed
Fix release build
1 parent 94af5d1 commit 50c2d2c

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@ __pycache__/
33
venv/
44
.venv/
55
*.egg-info/
6-
*.egg
6+
*.egg
7+
build/
8+
dist/

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Changelog
2+
3+
## Version 0.1.2
4+
5+
### Fixed
6+
- `f6924a1` - Fix release build
7+
8+
## Version 0.1.1
9+
10+
### Added
11+
- `94af5d1` - Add workflow to publish package
12+
13+
## Version 0.1.0
14+
15+
### Added
16+
- `692d7f9` - Initial version

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
from setuptools import setup, find_packages
2+
import os
23

34
setup(
45
name='adaup',
5-
version='0.1.1',
6-
packages=['adaup'],
6+
version='0.1.2',
7+
packages=find_packages(where='src'),
78
package_dir={'': 'src'},
89
install_requires=[
910
'tqdm',

src/adaup/commands/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# This file makes 'commands' a Python package.

0 commit comments

Comments
 (0)