-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.cfg
73 lines (64 loc) · 1.26 KB
/
setup.cfg
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[metadata]
name = fbo-scraper
version = 2.1.0
author = Adam Buckingham
author_email = [email protected]
description = This project gathers Information Technology (IT) solicitations that are posted by the US Federal Government on beta.sam.gov.
license = CC0 1.0 Universal
platforms = unix, linux, osx
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
[options]
packages = find:
install_requires =
addict
dill
imbalanced-learn
nltk
numpy
pandas
psycopg2-binary
python-dateutil
python-json-logger
PyYAML
requests
scikit-learn==1.2.2
scipy
sqlalchemy
sqlalchemy_utils
textract
urllib3
wget
python_requires = >=3.10
package_dir =
=src
zip_safe = False
include_package_data = True
[options.extras_require]
dev =
alembic
fpdf
python-docx
python-dotenv
pytest
pytest-cov
mypy
requests_mock
reportlab
ruff
selenium
[options.package_data]
mypkg =
*.pkl
[options.packages.find]
where=src
exclude =
cf*
bin*
docs*
[options.entry_points]
console_scripts =
fbo_scraper = fbo_scraper.main:actual_main
ebuy_parser = fbo_scraper.util.ebuy_csv:main