-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (54 loc) · 1.36 KB
/
Copy pathsetup.py
File metadata and controls
56 lines (54 loc) · 1.36 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import setuptools
from pathlib import Path
here = Path(__file__).parent
long_description = (here / "README.md").read_text(encoding="utf-8")
setuptools.setup(
name="crimepy",
version="0.0.1",
author="Andrew Wheeler",
author_email="andrew.wheeler@crimede-coder.com",
description="Crime analysis in python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/apwheele/crimepy",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=[
'matplotlib',
'pandas',
'scikit-learn',
'scipy>1.11',
'geopandas',
'folium',
'requests',
'jupyter',
'importlib_resources',
'geopandas',
'shapely',
'matplotlib-scalebar',
'matplotlib-map-utils',
'osmnx',
'beautifulsoup4',
'folium',
'networkx',
'contextily',
'ipycytoscape',
'pulp',
'highspy',
'libpysal',
'openpyxl',
'tabulate',
'TableauScraper'
],
tests_require=[
'pytest',
],
package_data={
'crimepy': ['*.png', '*.csv.zip'],
},
)