-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (36 loc) · 1.09 KB
/
setup.py
File metadata and controls
40 lines (36 loc) · 1.09 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
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
import os
readme = "README.md"
here = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(here, readme)
if os.path.exists(readme_path):
with open(readme_path, "rb") as stream:
readme = stream.read().decode("utf8")
setup(
long_description=readme,
long_description_content_type='text/markdown',
url='https://mcaapi.readthedocs.io',
name="mcaapi",
version="0.1.3",
description="A Python wrapper for the Maricopa County Assessor API.",
python_requires="==3.*",
project_urls={"repository": "https://github.com/foxbatcs/mcaapi"},
author="FoxbatCS",
author_email="fbcs@foxbatcs.com",
license="MIT",
packages=find_packages(),
package_dir={"": "."},
package_data={
'mcaapi': ['*.csv', 'datasets/*.csv', 'datasets/*.rst']
},
#include_package_data= True,
#install_requires= find_packages(exclude = 'test*'),
extras_require={
"dev": [
"wheel==0.*,>=0.30.0"
],
}
)