From 7bdb1bfd7debadfd253ad3993bd83d66949f04cb Mon Sep 17 00:00:00 2001 From: bkfox Date: Tue, 1 Dec 2015 16:19:18 +0100 Subject: [PATCH] update project tree... --- aircox/LICENSE => LICENSE | 0 aircox/README.md => README.md | 0 requirements.txt | 6 ++++++ setup.py | 33 +++++++++++++++++++++++++++++++++ 4 files changed, 39 insertions(+) rename aircox/LICENSE => LICENSE (100%) rename aircox/README.md => README.md (100%) create mode 100644 requirements.txt create mode 100644 setup.py diff --git a/aircox/LICENSE b/LICENSE similarity index 100% rename from aircox/LICENSE rename to LICENSE diff --git a/aircox/README.md b/README.md similarity index 100% rename from aircox/README.md rename to README.md diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..544b85f --- /dev/null +++ b/requirements.txt @@ -0,0 +1,6 @@ +Django>=1.9a1 +django-taggit>=0.12.1 +django-suit>=0.2.15 +django-autocomplete-light>=2.2.8 +easy-thumbnails>=2.2 + diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..d85cc46 --- /dev/null +++ b/setup.py @@ -0,0 +1,33 @@ +import os +from setuptools import setup + +cwd = os.path.dirname(__file__) +with open(os.path.join(cwd, 'README.md')) as readme: + README = readme.read() + +with open(os.path.join(cwd, 'requirements.txt')) as requirements: + REQUIREMENTS = requirements.read() + REQUIREMENTS = [r for r in REQUIREMENTS.split('\n') if r] + +os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) + +setup( + name='aircox', + version='0.1', + license='GPLv3', + author='lordblackfox', + description='Aircox is a radio programs manager that includes tools and cms' + long_description=README, + url='http://bkfox.net/', + include_package_data=True, + packages = ['aircox'] + install_requires=REQUIREMENTS, + classifiers=[ + 'Framework :: Django', + 'Programming Language :: Python', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.2', + 'Programming Language :: Python :: 3.3', + ], +) +