-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (28 loc) · 924 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
import pathlib
from setuptools import setup
HERE = pathlib.Path(__file__).parent
readme = (HERE / "README.md").read_text(encoding="utf-8")
setup(
name="pnoise",
version="0.3.0a0",
description="Vectorized port of Processing noise() function",
long_description=readme,
long_description_content_type="text/markdown",
author="Antoine Beyeler",
author_email="[email protected]",
url="https://github.com/plottertools/pnoise",
license="LGPL 2.1",
packages=["pnoise"],
python_requires=">=3.6",
install_requires=[
"numpy>=1.19",
"importlib_metadata;python_version<'3.8'",
],
classifiers=[
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics",
"Typing :: Typed",
],
)