-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
33 lines (29 loc) · 1.07 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
# Declarative configuration for setup.py
# For more details on this format, see the official docs here:
# https://setuptools.pypa.io/en/latest/userguide/declarative_config.html
# And a useful annotated template can be found here:
# https://gist.github.com/althonos/6914b896789d3f2078d1e6237642c35c
[metadata]
name = taxitools
version = attr: taxitools.__version__
author = Stephanie Trinh, Rohan Goel, Daniel Ho, Xingrui Ye
description = A Python library for analyzing NYC taxi data
long_description = file: README.md
long_description_content_type = text/markdown
keywords = tools, ligo
license = BSD 3-Clause License
classifiers =
Programming Language :: Python :: 3.9.9
License :: OSI Approved :: BSD License
Operating System :: OS Independent
[options]
include_package_data = True
packages = find:
python_requires = >= 3.9.9,
install_requires =
tqdm
[options.packages.find]
exclude =
examples*
docs*