-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (25 loc) · 795 Bytes
/
setup.py
File metadata and controls
30 lines (25 loc) · 795 Bytes
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
import pathlib
import setuptools
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setuptools.setup(
name='edfi_api_client',
version='0.4.0',
description='Ed-Fi API client and tools',
license_files=['LICENSE'],
url='https://github.com/edanalytics/edfi_api_client',
author='Erik Joranlien, Jay Kaiser, Alex Chen',
author_email='ejoranlien@edanalytics.org, jkaiser@edanalytics.org, achen@edanalytics.org',
long_description=README,
long_description_content_type='text/markdown',
keyword='edfi, ed-fi, api, client, data',
python_requires='>=3.10',
packages=['edfi_api_client'],
install_requires=[
'requests'
],
extras_require={
'test': ['pytest', 'responses']
},
zip_safe=False,
)