forked from ShiftLeftSecurity/flask-webgoat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (36 loc) · 1.4 KB
/
setup.py
File metadata and controls
37 lines (36 loc) · 1.4 KB
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
from setuptools import setup, find_packages
setup(
name='your_package_name', # Replace with your package name
version='0.1.0', # Initial version number
author='Your Name', # Your name
author_email='your.email@example.com', # Your email
description='A short description of your package', # Brief description
long_description=open('README.md').read(), # Long description (can also use another file)
long_description_content_type='text/markdown', # Specify the type of long description
url='https://github.com/yourusername/your_repository', # URL to your package's repository
packages=find_packages(), # Automatically find packages in the folder
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License', # Specify the license your package falls under
'Operating System :: OS Independent',
],
python_requires='>=3.6', # Minimum Python version required
install_requires=[
'click==7.1.2',
'Flask==1.1.2',
'itsdangerous==1.1.0',
'Jinja2==2.11.3',
'Werkzeug==1.0.1',
'Django==3.1.7',
'SQLAlchemy==2.0.36',
'jeepney==0.8.0',
'markupsafe==2.1.1',
'requests:2.19.1',
'numpy==2.2.0'
'pygithub==1.55',
'pyjwt==2.4.0',
'pynacl==1.5.0',
'pyyaml==6.0.1',
'secretstorage==3.3.2'
],
)