Skip to content

Commit

Permalink
Code refactoring to fit new project name.
Browse files Browse the repository at this point in the history
  • Loading branch information
havocesp committed Nov 13, 2018
1 parent 7a96456 commit 00ed7ef
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 16 deletions.
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.idea
cryptocmpy.egg-info
cryptocmpy/__pycache__
/cryptocmpy.egg-info/
/cryptocmpy/__pycache__/
/.idea/
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
- **Author**: `Daniel J. Umpierrez`
- **Site**: [https://github.com/havocesp/cryptocmpy](https://github.com/havocesp/cryptocmpy)
- **License**: `UNLICENSE`
- **Version**: `0.1.1`
- **Version**: `0.1.2`

# Description
Just another Python 3 "**CryptoCompare**" API wrapper.
Expand Down Expand Up @@ -42,6 +42,9 @@ print(historic_price)

## Changelog

### 0.1.2
- Project name changed to Cryptocmpy (Cryptocmp was already taken at pypi.org)

### 0.1.1
- Removed _utils.py_ module
- Minor fixes
Expand Down
2 changes: 1 addition & 1 deletion cryptocmpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

__author__ = 'Daniel J. Umpierrez'
__license__ = 'UNLICENSE'
__version__ = '0.1.1'
__version__ = '0.1.2'

__description__ = __doc__

Expand Down
22 changes: 11 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages

import cryptocmpy as ccmp
import cryptocmpy as ccmpy

exclude = ['.idea*', 'build*', '{}.egg-info*'.format(__package__), 'dist*', 'venv*', 'doc*', 'lab*']

setup(
name=ccmp.__package__,
version=ccmp.__version__,
name=ccmpy.__package__,
version=ccmpy.__version__,
packages=find_packages(exclude=exclude),
url=ccmp.__site__,
license=ccmp.__license__,
packages_dir={'': ccmp.__package__},
keywords=ccmp.__keywords__,
author=ccmp.__author__,
author_email=ccmp.__email__,
long_description=ccmp.__description__,
description=ccmp.__description__,
url=ccmpy.__site__,
license=ccmpy.__license__,
packages_dir={'': ccmpy.__package__},
keywords=ccmpy.__keywords__,
author=ccmpy.__author__,
author_email=ccmpy.__email__,
long_description=ccmpy.__description__,
description=ccmpy.__description__,
classifiers=[
'Development Status :: 5 - Production',
'License :: OSI Approved :: MIT License',
Expand Down

0 comments on commit 00ed7ef

Please sign in to comment.