Skip to content

Commit

Permalink
Fix setup.py syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
artursmet authored Oct 7, 2022
1 parent fc4da9b commit 95fd443
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#! /usr/bin/env python
import os
from setuptools import setup

CLASSIFIERS = [
Expand All @@ -12,11 +13,17 @@
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries :: Python Modules']

README_PATH = os.path.join(os.path.dirname(os.path.abspath(__file__)), "README.md")
with open(README_PATH, "r", encoding="utf8") as f:
README = f.read()

setup(
name='prices',
author='Mirumee Software',
author_email='[email protected]',
description='Python price handling for humans',
long_description=README,
long_description_content_type="text/markdown",
license='BSD',
version='1.1.1',
url='https://github.com/mirumee/prices',
Expand Down

0 comments on commit 95fd443

Please sign in to comment.