-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
51 lines (47 loc) · 1.25 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
import pathlib, platform
from setuptools import find_packages, setup
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
if platform.system() == 'Windows':
I_R = [
'cython==0.29.22',
'bitshares',
'pypubsub',
'kivy[base]',
'kivymd'
]
else:
I_R = [
'cython',
'bitshares',
'pypubsub',
'kivy',
'kivymd'
]
setup(
name='PoolTool',
version='2.1.0',
description='A simple Python tool to help anyone use Liquidity Pools on the BitShares blockchain.',
long_description=README,
long_description_content_type='text/markdown',
author='Brendan Jensen (iamredbar)',
author_email='[email protected]',
license='MIT',
url='https://github.com/iamredbar/PoolTool',
packages=find_packages(),
install_requires=I_R,
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
],
package_data={
'PoolTool': ['*.kv', 'assets/*.jpg'],
},
entry_points={
'console_scripts': [
'PoolTool = PoolTool.controller:main'
]
}
)