-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 1017 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
from setuptools import find_packages, setup
__version__ = "1.1.42"
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='paketmutfak',
version=__version__,
author='Paket Mutfak',
author_email='[email protected]',
description='Testing installation of Package',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/PaketMutfak/PaketMutfak-Lib-Test',
project_urls={
"Bug Tracker": "https://github.com/PaketMutfak/PaketMutfak-Lib-Test/issues"
},
license='MIT',
packages=find_packages(),
install_requires=['requests',
'boto3',
'mysql-connector',
'uuid',
'datetime',
'iso8601',
'slugify',
'PyJWT',
'beartype',
'flask',
"python-ulid"],
)