forked from tainatravassos/Ecommerce_Mary_Jackson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.sh
43 lines (42 loc) · 1.12 KB
/
setup.sh
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
39
40
41
42
43
from setuptools import setup, find_packages
setup(
name='maryjackson',
version='0.1',
packages=find_packages(),
include_package_data=True,
install_requires=[
'asgiref==3.8.1',
'beautifulsoup4==4.12.3',
'blinker==1.7.0',
'certifi==2024.2.2',
'charset-normalizer==3.3.2',
'click==8.1.7',
'colorama==0.4.6',
'defusedxml==0.7.1',
'Django==5.0.4',
'django-bootstrap-icons==0.8.7',
'django-bootstrap5==23.4',
'Flask==3.0.1',
'idna==3.6',
'iniconfig==2.0.0',
'itsdangerous==2.1.2',
'Jinja2==3.1.3',
'MarkupSafe==2.1.4',
'packaging==23.2',
'pillow==10.2.0',
'pluggy==1.4.0',
'pytest==8.1.0',
'python-dotenv==1.0.1',
'requests==2.31.0',
'soupsieve==2.5',
'sqlparse==0.4.4',
'tzdata==2024.1',
'urllib3==2.2.1',
'Werkzeug==3.0.1'
],
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
],
)