-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (35 loc) · 1.28 KB
/
Copy pathsetup.py
File metadata and controls
39 lines (35 loc) · 1.28 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
38
39
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(name='bushfires_detector',
version='0.1.0',
description='Bushfires Detector',
packages=find_packages('src'),
package_dir={'': 'src'},
long_description=readme(),
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
],
keywords='bushfires detector object mobilenet',
url='https://github.com/ahestevenz/bushfires-object-detection',
author='Ariel Hernandez <ahestevenz@bleiben.ar>',
author_email='ahestevenz@bleiben.ar',
license='Proprietary',
install_requires=[
'numpy==1.23.0', 'pathlib', 'pandas==1.4.3', 'scikit-learn',
'matplotlib==3.5.2', 'loguru==0.6.0', "opencv-python==4.6.0.66",
"gdown==4.5.1", "lxml"
],
test_suite='nose.collector',
tests_require=['nose'],
entry_points={
'console_scripts': ['bn-run-train=bnBushFiresDetector.scripts.run_train:main',
'bn-run-test=bnBushFiresDetector.scripts.run_test:main',
],
},
include_package_data=True,
zip_safe=True
)