[#13] Link version with setuptools_scm

This commit is contained in:
Gavin.Chan
2018-01-03 11:14:28 +00:00
parent 710e4c0d43
commit ac51602d73
2 changed files with 4 additions and 5 deletions
-1
View File
@@ -4,4 +4,3 @@
__author__ = """Gavin Chan"""
__email__ = 'gavincyi@gmail.com'
__version__ = '0.1.5rc1'
+4 -4
View File
@@ -4,7 +4,6 @@
"""The setup script."""
from setuptools import setup, find_packages
from libcryptomarket import __version__
with open('README.md') as readme_file:
readme = readme_file.read()
@@ -14,7 +13,8 @@ with open('HISTORY.rst') as history_file:
requirements = [
'pandas>=0.20.0',
'requests'
'requests',
'setuptools_scm'
]
setup_requirements = [
@@ -29,13 +29,13 @@ test_requirements = [
setup(
name='libcryptomarket',
version=__version__,
use_scm_version=True,
description="Library for cryptocurrency market information.",
long_description=readme + '\n\n' + history,
author="Gavin Chan",
author_email='gavincyi@gmail.com',
url='https://github.com/gavincyi/libcryptomarket',
packages=['libcryptomarket', 'libcryptomarket.api',
packages=['libcryptomarket', 'libcryptomarket.api',
'libcryptomarket.core'],
include_package_data=True,
install_requires=requirements,