-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathsetup.py
65 lines (59 loc) · 1.68 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
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env python
from __future__ import annotations
from setuptools import find_packages, setup
with open("README.md") as fh:
long_description = fh.read()
dependencies = [
"packaging",
"pytest",
"pytest-asyncio",
"pytimeparse",
"anyio",
"chia-blockchain==2.5.1",
]
dev_dependencies = [
"anyio",
"mypy",
"ruff>=0.8.1",
"types-aiofiles",
"types-click",
"types-cryptography",
"types-setuptools",
"types-pyyaml",
"types-setuptools",
"pre-commit",
]
setup(
name="chia_dev_tools",
packages=find_packages(exclude=("tests",)),
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/Chia-Network",
license="https://opensource.org/licenses/Apache-2.0",
description="Chia development commands",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: Apache Software License",
"Topic :: Security :: Cryptography",
],
extras_require=dict(
dev=dev_dependencies,
),
project_urls={
"Bug Reports": "https://github.com/Chia-Network/chia-dev-tools",
"Source": "https://github.com/Chia-Network/chia-dev-tools",
},
)