-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (31 loc) · 866 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
27
28
29
30
31
32
33
from setuptools import setup, find_packages
from setuptools.extension import Extension
from Cython.Build import cythonize
import numpy
extensions = [
Extension(
"cfuncs",
["poopy/cfuncs.pyx"],
language="c++", # Use C++ compiler
)
]
setup(
name="poopy",
version="0.4.1",
ext_modules=cythonize(extensions),
include_dirs=[numpy.get_include()],
packages=find_packages(),
author="Alex Lipp",
author_email="alexander.lipp@merton.ox.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",
"geojson",
"gdal", # osgeo package is usually installed via the GDAL package
"requests",
],
)