-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 929 Bytes
/
setup.py
File metadata and controls
37 lines (35 loc) · 929 Bytes
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
# ruff: noqa: D100
import numpy
from Cython.Build import cythonize
from setuptools import find_packages, setup
from setuptools.extension import Extension
extensions = [
Extension(
"cfuncs",
["poopy/cfuncs.pyx"],
language="c++", # Use C++ compiler
)
]
setup(
name="poopy",
version="0.5.6",
ext_modules=cythonize(extensions),
include_dirs=[numpy.get_include()],
packages=find_packages(),
author="Alex Lipp",
author_email="a.lipp@ucl.ac.uk",
description="An Object Oriented Python package for working with English Water Companies Event Duration Monitoring live data.",
install_requires=[
"Cython",
"matplotlib",
"numpy",
"pandas",
"pooch",
"pytest",
"geojson",
"geopandas",
"gdal", # osgeo package is usually installed via the GDAL package
"requests",
"shapely",
],
)