-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (36 loc) · 1.11 KB
/
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 setuptools import setup, find_packages
with open("README.md", "r") as readme_file:
long_description = readme_file.read()
setup(
name="agriaid",
version="0.1.0",
author="Shamsuddin Ahmed",
author_email="shamspiasai@gmail.com",
description="A package for early detection and diagnosis of plant diseases in Bangladesh",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/shamspias/agriaid",
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
],
python_requires='>=3.8',
install_requires=[
"Flask>=2.0.1",
"numpy>=1.21.2",
"Pillow>=8.3.1",
"scikit-learn>=0.24.2",
"tensorflow>=2.6.0",
"python-dotenv>=0.19.0",
],
extras_require={
"dev": [
"pytest>=6.2.4",
],
},
)