-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1023 Bytes
/
setup.py
File metadata and controls
36 lines (33 loc) · 1023 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
26
27
28
29
30
31
32
33
34
35
36
import setuptools
with open("bcbcpy/readme.md") as f:
long_description = f.read()
with open("LICENSE") as f:
license = f.read()
setuptools.setup(
name="bcbcpy",
use_git_versioner="desc",
setup_requires=["git-versioner"],
description="A standalone(no-third-party) crypto & blockchain demo package on python.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Heritiana Daniel, Andriasolofo (https://aheritianad.github.io)",
author_email="aheritianad@gmail.com",
project_urls={
"Source": "https://github.com/aheritianad/BootCamp-BlockChain-and-Python/",
},
url="https://github.com/aheritianad/BootCamp-BlockChain-and-Python/",
packages=setuptools.find_packages(
include=(
"bcbcpy",
"bcbcpy.*",
)
),
package_dir={"bcbcpy": "bcbcpy"},
keywords=[
"cryptography",
"blockchain",
"hash",
],
license=license,
python_requires=">=3.9",
)