-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 761 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 761 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="plonk",
version="0.0.1",
description="Python implementation for PLONK",
python_requires=">=3.6,<4",
install_requires=["py_ecc==1.4.0", "ethsnarks==0.0.1", "scipy>=1.4.1",],
extras_require={
"test": ["pytest>=5,<6", "nbval>=0.9.5"],
"lint": ["black>=19.10b0"],
"tutorial": ["jupyter>=1.0.0"],
},
packages=find_packages(exclude=["tests", "*.ipynb"]),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
],
)