-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (39 loc) · 1.01 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import pathlib
import os
import platform
import sys
import warnings
REQUIRED = [
'requests',
'numpy',
'pandas',
'geopandas',
'shapely',
'fiona',
]
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(
author="Marc Rauckhorst",
author_email='[email protected]',
url="https://github.com/marc-rauckhorst/arcos-py",
classifiers=[
'License :: OSI Approved :: MIT License',
#'Programming Language :: Python :: 3.5'
#'Programming Language :: Python :: 3.6'
'Programming Language :: Python :: 3.7',
],
description="Python package to directly access the Washington Post's ARCOS API and opioid dataset",
license="MIT license",
include_package_data=True,
packages=find_packages(exclude=("tests",)),
install_requires = REQUIRED,
name='arcos4py',
version='0.2.2',
zip_safe=False,
)