This repository was archived by the owner on Jan 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (36 loc) · 1.32 KB
/
setup.py
File metadata and controls
41 lines (36 loc) · 1.32 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
from setuptools import setup, find_packages
with open("README.md", 'r') as f:
readme = f.read()
with open('requirements.txt') as f:
requirements = [x.strip() for x in f.readlines()]
with open('extra_test_requires.txt') as f:
extra = {'testing': [x.strip() for x in f.readlines()]}
setup(
name='fsf-api-access_python',
version='2.3.6',
description='A Python API Access Client for the First Street Foundation API',
url='https://github.com/FirstStreet/fsf_api_access_python',
project_urls={
'First Street Foundation Website': 'https://firststreet.org/',
'API Product Data Dictionary': 'https://docs.firststreet.dev/docs'
},
long_description=readme,
long_description_content_type="text/markdown",
author="Kelvin",
author_email="kelvin@firststreet.org",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Hydrology",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
# Package info
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
py_modules=[],
install_requires=requirements,
python_requires='>=3.7',
extras_require=extra
)