From 591da3711df9a9f7037cd2a4676c18d5a6ab0e55 Mon Sep 17 00:00:00 2001 From: jayme-github Date: Fri, 20 Dec 2013 19:39:08 +0100 Subject: [PATCH] add gitignore and add setup.py (needed to move some files) --- .gitignore | 37 +++++++++++++++++++++++++++++ Cryptsy.py => cryptsyapi/Cryptsy.py | 0 cryptsyapi/__init__.py | 2 ++ setup.py | 12 ++++++++++ 4 files changed, 51 insertions(+) create mode 100644 .gitignore rename Cryptsy.py => cryptsyapi/Cryptsy.py (100%) create mode 100644 cryptsyapi/__init__.py create mode 100644 setup.py 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'], + )