-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (35 loc) · 1.3 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
from setuptools import setup
with open('btcrelay/requirements.txt') as handle:
REQUIREMENTS = [_.strip() for _ in handle.readlines()]
# TODO: require python >= 3.9 for importlib.resources.files etc.
setup(
name='btcrelay',
version='2024.1a2',
description='Command Line for BTCRelay',
license='MIT',
package_data={
'btcrelay': ['py.typed'],
"btcrelay.abi": ["*.bin", "*.json"],
"btcrelay.deployments": ["*.json"]
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Religion',
'Topic :: System :: Hardware :: Mainframes',
'Typing :: Typed'
],
entry_points = {'console_scripts': ['btcrelay=btcrelay']},
packages=['btcrelay', 'btcrelay.deployments', 'btcrelay.abi', 'btcrelay.apis'],
py_modules=['__main__'],
install_requires=REQUIREMENTS
)