-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 956 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
from setuptools import setup, find_packages, Extension
from Cython.Build import cythonize, build_ext
deps = {"pylxr": ["numpy", "cython"]}
extensions = [Extension(name="cpylxr", sources=["cpylxr.pyx"])]
setup(
name="pylxr",
version="0.0.3",
description="A small library for using PegNet's custom LXR Hash",
author="Sam Barnes",
author_email="[email protected]",
url="https://github.com/pegnet/pylxr",
keywords=["lxr", "hash", "pegnet", "factom"],
license="MIT",
py_modules=["pylxr"],
ext_modules=cythonize(extensions),
install_requires=deps["pylxr"],
zip_safe=False,
packages=find_packages(exclude=["tests", "tests.*"]),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],
build_ext=build_ext,
)