Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
vladzima authored Nov 18, 2023
1 parent 9e70529 commit ecc2d11
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,28 +1,25 @@
# this file contains some placeholders
# that are changed in a local copy if a release is made

import setuptools

README = 'README.md' # the path to your readme file
README_MIME = 'text/markdown' # it's mime type
README = 'README.md'
README_MIME = 'text/markdown'

with open(README, "r") as fh:
long_description = fh.read()

setuptools.setup(
name="topenai", # placeholder (name of repo)
version="1", # placeholder (tag of release)
author="vladzima", # placeholder (owner of repo)
description="", # placeholder (description of repo)
url="https://github.com/vladzima/topenai", # placeholder (url of repo)
name="topenai",
version="0.0.1",
author="vladzima",
description="",
url="https://github.com/vladzima/topenai",
long_description=long_description,
long_description_content_type=README_MIME,
packages=setuptools.find_packages(),
author_email="", # the email of the repo owner
author_email="[email protected]",
classifiers=[
"Programming Language :: Python",
"Operating System :: OS Independent"
],
install_requires=[ # add required pypi packages here
install_requires=[
]
)

0 comments on commit ecc2d11

Please sign in to comment.