-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
36 lines (33 loc) · 1.19 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
from os import path
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Financial and Insurance Industry',
'Programming Language :: Python',
'Operating System :: OS Independent',
'Natural Language :: English',
'License :: OSI Approved :: BSD License'
]
# read the contents of your README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='pacli',
version='0.4.7.2',
description='Simple CLI PeerAssets client.',
long_description=long_description,
long_description_content_type='text/markdown',
keywords=['peerassets', 'blockchain', 'assets', 'client'],
url='https://github.com/peerassets/pacli',
author='Peerchemist',
author_email='[email protected]',
license='GPL',
packages=['pacli'],
install_requires=['pypeerassets', 'terminaltables',
'appdirs', 'fire', 'keyring', 'prettyprinter'
],
entry_points={
'console_scripts': [
'pacli = pacli.__main__:main'
]}
)