diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c3c9bb3 --- /dev/null +++ b/.gitignore @@ -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 diff --git a/Cryptsy.py b/cryptsyapi/Cryptsy.py similarity index 100% rename from Cryptsy.py rename to cryptsyapi/Cryptsy.py diff --git a/cryptsyapi/__init__.py b/cryptsyapi/__init__.py new file mode 100644 index 0000000..a360f48 --- /dev/null +++ b/cryptsyapi/__init__.py @@ -0,0 +1,2 @@ +__version__ = "0.1" +from Cryptsy import Cryptsy, createTimeStamp diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..572068f --- /dev/null +++ b/setup.py @@ -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'], + )