-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1.14 KB
/
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
33
34
35
36
from setuptools import setup, find_packages
__version__ = "0.0.0"
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as f:
requirements = f.read().splitlines()
# setup(
# name="crypto_VDF",
# version=__version__,
# description="Verifiable Delay Function project",
# long_description=long_description,
# long_description_content_type="text/markdown",
# url="https://github.com/programmingAthlete/crypto-VDF.git",
# packages=find_packages(where="src", include=["crypto_VDF*"]),
# package_dir={"": "src"},
# install_requires=requirements,
# zip_safe=False
# )
setup(
name="crypto_VDF",
version=__version__,
description="Verifiable Delay Function project",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/programmingAthlete/crypto-VDF.git",
packages=find_packages(where="src", include=["crypto_VDF*"]),
package_dir={"": "src"},
console_scripts={
"cryptoVDF": "crypto_VDF.entry_point:main"},
install_requires=requirements,
zip_safe=False
)