Skip to content

Commit

Permalink
Merge pull request #8 from rodrigo-arenas/develop
Browse files Browse the repository at this point in the history
Release 0.1.1
  • Loading branch information
rodrigo-arenas authored Mar 8, 2021
2 parents f0e9bea + 5b8a66f commit a400ed2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Empty file added pyworkforce/queuing/__init__.py
Empty file.
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import pathlib
from setuptools import setup
from setuptools import setup, find_packages

# twine upload --skip-existing --repository-url https://test.pypi.org/legacy/ dist/*

# The directory containing this file
HERE = pathlib.Path(__file__).parent
Expand All @@ -19,10 +21,10 @@
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: MIT License",
'License :: OSI Approved :: MIT License',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
],
packages=["pyworkforce"],
packages=find_packages(),
include_package_data=True,
)

0 comments on commit a400ed2

Please sign in to comment.