-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
47 lines (42 loc) · 1.11 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md", "rt") as fh:
long_description = fh.read()
dependencies = [
"chia-dev-tools",
]
dev_dependencies = [
"flake8",
"mypy",
"black",
]
setup(
name="beacon_coin",
version="0.0.2",
packages=find_packages(exclude=("tests",)),
author="trepca",
entry_points={
"console_scripts": ["beacon-coin = beacon_coin.cmd:cli"],
},
package_data={
"": ["*.clvm", "*.clvm.hex", "*.clib", "*.clsp", "*.clsp.hex"],
},
author_email="trepca@gmail.com",
setup_requires=["setuptools_scm"],
install_requires=dependencies,
url="https://github.com/Chia-Network",
license="https://opensource.org/licenses/MIT",
description="",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"Topic :: Security :: Cryptography",
],
extras_require=dict(
dev=dev_dependencies,
),
project_urls={
"Source": "https://github.com/trepca/beacon-coin",
},
)