forked from mzabrams/fars_cleaner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (50 loc) · 1.45 KB
/
setup.py
File metadata and controls
52 lines (50 loc) · 1.45 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
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="fars_cleaner",
version="1.4.0",
description="A package for loading and preprocessing the NHTSA FARS crash database",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Mitchell Abrams",
author_email="[email protected]",
maintainer="Mitchell Abrams",
maintainer_email="[email protected]",
url="https://github.com/mzabrams/fars-cleaner",
license="BSD-3-Clause",
packages=find_packages(),
python_requires=">=3.8",
install_requires=[
"pandas>=2.0.0",
"numpy>=1.22.0",
"scipy>=1.7.0",
"pathlib",
"pyjanitor>=0.23.1",
"dask==2025.05.0",
"distributed>=2022",
"urllib3>=2.0.0",
"tqdm>=4.64.0",
"thefuzz",
"pyarrow",
],
extras_require={
"dev": ["pytest>=7.1.0", "hypothesis"],
},
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Development Status :: 5 - Production/Stable",
],
keywords=[
"FARS",
"crash analysis",
"data preprocessing",
"NHTSA",
"vehicle safety"
],
include_package_data=True,
)