Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptcoin-junkey committed May 13, 2021
1 parent 9d872a7 commit ee7e3e7
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ def run(self):

required_packages = [
'appdirs==1.4.0',
'setuptools-markdown==0.2',
'prettytable==0.7.2',
'colorlog==2.7.0',
'python-dateutil==2.5.3',
Expand All @@ -52,7 +51,8 @@ def run(self):
'url': 'http://counterparty.io',
'license': 'MIT',
'description': 'Counterparty Protocol Command-Line Interface',
'long_description': '',
'long_description': open('README.ms').read(),
'long_description_content_type': 'text/markdown',
'keywords': 'counterparty,bitcoin',
'classifiers': [
"Development Status :: 5 - Production/Stable",
Expand All @@ -72,7 +72,7 @@ def run(self):
'provides': ['counterpartycli'],
'packages': find_packages(),
'zip_safe': False,
'setup_requires': ['setuptools-markdown',],
'setup_requires': [],
'install_requires': required_packages,
'entry_points': {
'console_scripts': [
Expand Down Expand Up @@ -118,8 +118,5 @@ def run(self):
'py2exe': py2exe
}
})
# prepare PyPi package
elif sys.argv[1] == 'sdist':
setup_options['long_description_markdown_filename'] = 'README.md'

setup(**setup_options)

0 comments on commit ee7e3e7

Please sign in to comment.