Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
*.py[cod]

# C extensions
*.so

# Packages
*.egg
*.egg-info
dist
build
eggs
parts
bin
var
sdist
develop-eggs
.installed.cfg
lib64
examples

# Installer logs
pip-log.txt

# Unit test / coverage reports
.coverage
.tox
nosetests.xml

# Translations
*.mo

# Mr Developer
.mr.developer.cfg
.project
.pydevproject

*.swp
File renamed without changes.
2 changes: 2 additions & 0 deletions cryptsyapi/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
__version__ = "0.1"
from Cryptsy import Cryptsy, createTimeStamp
12 changes: 12 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/env python

from distutils.core import setup

setup(name='CryptsyPythonAPI',
version='0.1',
description='API for Cryptsy.com Exchange utilizing completely built-in functions and utilities of Python 2.7.',
author='ScriptProdigy',
author_email='matt.joseph.smith@gmail.com',
url='https://github.com/ScriptProdigy/CryptsyPythonAPI',
packages=['cryptsyapi'],
)