Puts setup.py in the right place (oops)
This commit is contained in:
parent
e47e11acfd
commit
fb3f1411c7
1 changed files with 6 additions and 8 deletions
|
@ -2,7 +2,7 @@
|
||||||
import os
|
import os
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
import registrasion
|
import registripe
|
||||||
|
|
||||||
|
|
||||||
def read_file(filename):
|
def read_file(filename):
|
||||||
|
@ -15,13 +15,12 @@ def read_file(filename):
|
||||||
return ''
|
return ''
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="registrasion",
|
name="registrasion-stripe",
|
||||||
author="Christopher Neugebauer",
|
author="Christopher Neugebauer",
|
||||||
author_email="_@chrisjrn.com",
|
author_email="_@chrisjrn.com",
|
||||||
version=registrasion.__version__,
|
version=registripe.__version__,
|
||||||
description="A registration app for the Symposion conference management "
|
description="Stripe-based payments for the Registrasion conference registration package.",
|
||||||
"system.",
|
url="http://github.com/chrisjrn/registrasion-stripe/",
|
||||||
url="http://github.com/chrisjrn/registrasion/",
|
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
classifiers=(
|
classifiers=(
|
||||||
|
@ -32,6 +31,5 @@ setup(
|
||||||
"Natural Language :: English",
|
"Natural Language :: English",
|
||||||
"License :: OSI Approved :: Apache Software License",
|
"License :: OSI Approved :: Apache Software License",
|
||||||
),
|
),
|
||||||
install_requires=read_file("requirements/base.txt").splitlines(),
|
install_requires=read_file("requirements.txt").splitlines(),
|
||||||
dependency_links=read_file("requirements/dependencies.txt").splitlines(),
|
|
||||||
)
|
)
|
Loading…
Reference in a new issue