Skip to content

Commit

Permalink
ci: Trying fix this bullshit
Browse files Browse the repository at this point in the history
  • Loading branch information
pkeorley committed Jun 15, 2024
1 parent e06daeb commit af778e9
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,6 @@
# This source code is licensed under the MIT license found in the LICENSE
# file in the root directory of this source tree.

from lenv import (
__version__,
__author__,
__description__
)

from setuptools import setup, find_packages


Expand All @@ -20,11 +14,11 @@ def get_long_description() -> str:

setup(
name="lenv",
author=__author__,
author="pkeorley",
author_email='pkeorley@gmail.com',

url='https://github.com/pkeorley/lenv',
version=__version__,
version="0.1.0",

license='MIT',
license_files=['LICENSE'],
Expand All @@ -33,7 +27,7 @@ def get_long_description() -> str:
packages=find_packages(exclude=['.venv']),
install_requires=["python-dotenv==1.0.1"],

description=__description__,
description="Quickly and efficiently load environment variables into a class",
long_description=get_long_description(),
long_description_content_type='text/markdown'
)

0 comments on commit af778e9

Please sign in to comment.