-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 917 Bytes
/
setup.py
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
import setuptools, ast
with open('README.rst', 'r') as o:
long_description = o.read()
with open('geocode_sparcs/_version.py', 'r') as o:
version = ast.literal_eval(ast.parse(o.read()).body[0].value)
setuptools.setup(
name = 'geocode_sparcs',
version = version,
author = 'Kodi B. Arfer',
description = "Geocode addresses from New York State's SPARCS data",
long_description = long_description,
long_description_content_type = 'text/x-rst',
project_urls = {
'Source Code': 'https://github.com/justlab/geocode_sparcs'},
install_requires = [
'tqdm >= 4.65.0',
'requests >= 2.28.2',
'inflect >= 6.0.2'],
packages = setuptools.find_packages(),
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent'])