This repository was archived by the owner on Dec 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (49 loc) · 1.52 KB
/
setup.py
File metadata and controls
54 lines (49 loc) · 1.52 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md", "rt") as fh:
long_description = fh.read()
dependencies = [
"aiohttp==3.8.1",
"backoff==2.0.1",
"click==8.1.3",
"influxdb_client==1.29.1",
"python-dotenv==0.20.0",
"requests==2.28.0",
]
dev_dependencies = [
"flake8",
"mypy",
"black==21.12b0",
"pytest",
"pytest-asyncio",
"pytest-env",
]
setup(
name="chia-transaction-exporter",
packages=find_packages(exclude=("tests",)),
author="Freddie",
author_email="f.coleman@chia.net",
setup_requires=["setuptools_scm"],
install_requires=dependencies,
url="https://github.com/Chia-Network/transaction-exporter",
license="https://opensource.org/licenses/Apache-2.0",
description="Exports historic transaction data to a database ",
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",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache Software License",
"Topic :: Security :: Cryptography",
],
extras_require=dict(
dev=dev_dependencies,
),
project_urls={
"Bug Reports": "https://github.com/Chia-Network/transaction-exporter",
"Source": "https://github.com/Chia-Network/transaction-exporter",
},
)