-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 867 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="dist-truncate",
version="0.2.0",
author="Sebastian Schönnenbeck",
author_email="[email protected]",
url="https://github.com/schoennenbeck/dist-truncate",
description="Easily truncate scipy distributions.",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(exclude=["tests"]),
install_requires=["scipy >= 1"],
license="MIT",
python_requires=">=3.6",
extras_require={
"dev": [
"black",
"isort",
"mypy",
"pre-commit",
"pytest",
"pytest-cov",
"coveralls",
"coverage",
"flake8",
],
},
)