From fb3f1411c7c21824d22748b3afc89512e37386bc Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer Date: Thu, 22 Sep 2016 11:30:28 +1000 Subject: [PATCH] Puts setup.py in the right place (oops) --- registripe/setup.py => setup.py | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) rename registripe/setup.py => setup.py (65%) diff --git a/registripe/setup.py b/setup.py similarity index 65% rename from registripe/setup.py rename to setup.py index f3bda01f..c803f16d 100644 --- a/registripe/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ import os from setuptools import setup, find_packages -import registrasion +import registripe def read_file(filename): @@ -15,13 +15,12 @@ def read_file(filename): return '' setup( - name="registrasion", + name="registrasion-stripe", author="Christopher Neugebauer", author_email="_@chrisjrn.com", - version=registrasion.__version__, - description="A registration app for the Symposion conference management " - "system.", - url="http://github.com/chrisjrn/registrasion/", + version=registripe.__version__, + description="Stripe-based payments for the Registrasion conference registration package.", + url="http://github.com/chrisjrn/registrasion-stripe/", packages=find_packages(), include_package_data=True, classifiers=( @@ -32,6 +31,5 @@ setup( "Natural Language :: English", "License :: OSI Approved :: Apache Software License", ), - install_requires=read_file("requirements/base.txt").splitlines(), - dependency_links=read_file("requirements/dependencies.txt").splitlines(), + install_requires=read_file("requirements.txt").splitlines(), )