Skip to content

Commit

Permalink
[rm_skycoin] refs skycoin#42. Add py_modules to setup.
Browse files Browse the repository at this point in the history
  • Loading branch information
stdevEclipse committed Jul 17, 2018
1 parent 194de5e commit c16891e
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ def build_extension(self, ext):
extra_link_args.append(library_file)

setup(
name='Pyskycoin', # Required
version='0.24.1', # Required
name='Pyskycoin',
version='0.24.1',
description='Skycoin Python Library',
long_description=long_description,
url='https://github.com/simelo/pyskycoin',
author='stdevEclipse', # Optional
author='stdevEclipse',
author_email='[email protected]',
setup_requires=["pytest-runner"],
tests_require=["pytest"],
Expand All @@ -90,10 +90,11 @@ def build_extension(self, ext):
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='skycoin crypto coin currency blockchain', # Optional
packages=find_packages(exclude=['contrib', 'docs', 'tests']), # Required
keywords='skycoin crypto coin currency blockchain',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
py_modules = ['skycoin'],
install_requires=[],
extras_require={ # Optional
extras_require={
'dev': ['check-manifest'],
'test': ['coverage'],
},
Expand Down

0 comments on commit c16891e

Please sign in to comment.