forked from Chia-Network/clvm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·41 lines (36 loc) · 1.13 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
37
38
39
40
41
#!/usr/bin/env python
from setuptools import setup
with open("README.md", "rt") as fh:
long_description = fh.read()
dependencies = [
"blspy>=0.9",
]
dev_dependencies = [
"clvm_tools>=0.4.4",
"pytest",
]
setup(
name="clvm",
packages=["clvm",],
author="Chia Network, Inc.",
author_email="[email protected]",
url="https://github.com/Chia-Network/clvm",
license="https://opensource.org/licenses/Apache-2.0",
description="[Contract Language | Chialisp] Virtual Machine",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=dependencies,
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: Apache Software License",
"Topic :: Security :: Cryptography",
],
extras_require=dict(dev=dev_dependencies,),
project_urls={
"Bug Reports": "https://github.com/Chia-Network/clvm",
"Source": "https://github.com/Chia-Network/clvm",
},
)