-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
55 lines (50 loc) · 1.58 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
from setuptools import setup, find_packages
from glob import glob
from pathlib import Path
with open("README.md", "rt") as fh:
long_description = fh.read()
dependencies = [
"clvm_tools>=0.4.3",
"clvm_rs>=0.1.1",
"chia-blockchain==1.2.3",
# "chia-blockchain@git+https://github.com/Chia-Network/chia-blockchain.git@fa2e66bc74d07a0d79d9a3762e5207aa6d38a0de",
"pytest",
"pytest-asyncio",
"pytimeparse",
]
dev_dependencies = []
setup(
name="chia_dev_tools",
version="0.1.0",
packages=find_packages(),
author="Quexington",
entry_points={
"console_scripts": [
"cdv = cdv.cmds.cli:main"
],
},
package_data={
"": ["*.clvm", "*.clvm.hex", "*.clib", "*.clsp", "*.clsp.hex"],
},
author_email="[email protected]",
setup_requires=["setuptools_scm"],
install_requires=dependencies,
url="https://github.com/Quexington",
license="https://mit-license.org/",
description="Chialisp development utility",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Topic :: Security :: Cryptography",
],
extras_require=dict(dev=dev_dependencies,),
project_urls={
"Bug Reports": "https://github.com/Quexington/chialisp_dev_utility",
"Source": "https://github.com/Quexington/chialisp_dev_utility",
},
)