Skip to content

Commit

Permalink
Fixed setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
adamantii committed Jun 15, 2022
1 parent b8c5e60 commit 9ad15a2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
from setuptools import setup, find_packages
import pathlib
from objectionpy import _version

here = pathlib.Path(__file__).parent.resolve()

setup(
name="objectionpy",
version="0.0.3",
version=_version.__version__,
author="Adamanti",
author_email="[email protected]",
url="https://github.com/adamantii/objection.py",
description="A modular python library for creating objection.lol projects",
long_description=(here / "README.md").read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
packages=find_packages("objectionpy"),
packages=["objectionpy"],
keywords=["objection.lol", "objection", "generator", "case", "scene"],
install_requires=["requests"],
classifiers=[
Expand Down

0 comments on commit 9ad15a2

Please sign in to comment.