mimcvdf/setup.py

17 lines
556 B
Python
Raw Normal View History

2020-03-18 06:10:19 +00:00
from setuptools import setup, find_packages
setup(name='mimcvdf',
2020-04-22 06:50:54 +00:00
version='1.1.0',
2020-03-18 06:10:19 +00:00
description='Generic high level VDF using MiMC',
author='Kevin Froman',
author_email='beardog@mailbox.org',
url='https://www.chaoswebs.net/',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=[],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
)