generated from leonhma/python-package-automation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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=[ | ||
] | ||
) |