-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 loc) · 1005 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
26
27
28
29
30
31
32
33
34
35
36
37
38
from re import findall
from setuptools import setup, find_packages
with open("jedutils/__init__.py", "r") as f:
version = findall(r"__version__ = \"(.+)\"", f.read())[0]
with open("README.md", "r") as f:
readme = f.read()
setup(
name="Jedutils",
version=version,
description="Jedutils is a Python utilities package that provides a collection of useful helper functions.",
long_description=readme,
long_description_content_type="text/markdown",
author="AYMEN Mohammed",
author_email="let.me.code.safe@gmail.com",
url="https://github.com/AYMENJD/jedutils",
license="MIT",
project_urls={
"Source": "https://github.com/AYMENJD/jedutils",
"Tracker": "https://github.com/AYMENJD/jedutils/issues",
},
packages=find_packages(),
extras_require={
"all": ["redis", "aiohttp"],
},
keywords=[
"utilities",
"tools",
"library",
"helper",
"functions",
"development",
],
)