-
Notifications
You must be signed in to change notification settings - Fork 14
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
IZAY01
authored and
IZAY01
committed
Feb 25, 2021
1 parent
f606136
commit 3eb712e
Showing
3 changed files
with
33 additions
and
2 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
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
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,12 +1,25 @@ | ||
from setuptools import find_packages, setup | ||
from os import path as os_path | ||
|
||
this_directory = os_path.abspath(os_path.dirname(__file__)) | ||
|
||
def read_file(filename): | ||
with open(os_path.join(this_directory, filename), encoding='utf-8') as f: | ||
long_description = f.read() | ||
return long_description | ||
|
||
setup( | ||
name="LibcSearcher", | ||
version="1.0", | ||
version="1.1.5", | ||
description="Python wrapper for libc-database.", | ||
author="IZAY01", | ||
author_email="[email protected]", | ||
platforms=["any"], | ||
license="BSD", | ||
url="https://github.com/IZAY01/LibcSearcher", | ||
packages=find_packages(), ) | ||
long_description=read_file('README.md'), | ||
long_description_content_type="text/markdown", | ||
install_requires=[ | ||
'requests', | ||
], | ||
packages=find_packages(), ) |