-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 995 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
from setuptools import setup, find_packages
setup(
name='imhotep_files_flask', # Name of your library
version='0.1', # Version number
packages=find_packages(), # Automatically find package directories
install_requires=[
'Flask',
'Werkzeug',
],
description='A Flask library for secure file uploads and deletions',
long_description=open('README.md').read(), # Read long description from README
long_description_content_type='text/markdown',
author='Karim Bassem',
author_email='imhoteptech@outlook.com',
url='https://github.com/Imhotep-Tech/imhotep_files_flask', # URL of your project
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6', # Minimum Python version
entry_points={
"console_scripts": [
"imhotep-files-flask = imhotep_files_flask:hello",
],
},
)