-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 922 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup, find_packages
with open("./README.md", "r", encoding="utf-8") as f:
long_desc_md = f.read()
setup (
name="utilitilib",
version="0.0.3",
author="Diman Gal Henege",
author_email="[email protected]",
description="A python utility package that provides commonly used functionalities or helper methods.",
long_description=long_desc_md,
long_description_content_type="text/markdown",
url="https://github.com/oDqnger/utilitilib",
packages=find_packages(),
requires=[],
keywords=["python", "helper", "functions", "utility", "utilities", "algorithms", "data types"],
license="MIT License",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.0",
]
)