Skip to content

Commit

Permalink
fix(setup.py): fix semantic versioning setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mostaphaRoudsari authored Jan 5, 2021
1 parent f07ea11 commit ef2dde2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,19 @@
with open('requirements.txt') as f:
requirements = f.read().splitlines()

with open('README.md') as fh:
long_description = fh.read()

setuptools.setup(
name="queenbee-dsl",
use_scm_version=True,
setup_requires=['setuptools_scm'],
author="Pollination",
author_email="info@ladybug.tools",
description="A Python DSL for Queenbee workflow language.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pollination/queenbee-python-dsl",
packages=setuptools.find_packages(exclude=["tests"]),
include_package_data=True,
python_requires=">=3.7",
Expand Down

0 comments on commit ef2dde2

Please sign in to comment.