-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.16 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
from setuptools import setup
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name='ern_reactor',
version='0.2.3',
description='Do arbitrary things in reaction to Ercoin transfers',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/KrzysiekJ/ern_reactor',
author='Krzysztof Jurewicz',
author_email='krzysztof.jurewicz@gmail.com',
python_requires='>=3.8, <4',
keywords='cryptocurrency',
py_modules=['ern_reactor'],
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: AsyncIO',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.8',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'python-dateutil>=2, <3',
'websockets>=9, <10',
],
)