Initial commit
This commit is contained in:
31
setup.py
Normal file
31
setup.py
Normal file
@@ -0,0 +1,31 @@
|
||||
from distutils.core import setup
|
||||
import mercy.version
|
||||
import os
|
||||
import sys
|
||||
|
||||
if __name__ == "__main__":
|
||||
setup(
|
||||
name="mercy",
|
||||
url="https://www.github.com/akesterson/mercy",
|
||||
version=mercy.version.VERSION,
|
||||
description="A flask application that facilitates paying for prescriptions",
|
||||
long_description="",
|
||||
author=("Andrew Kesterson"),
|
||||
author_email="andrew@aklabs.net",
|
||||
license="MIT",
|
||||
install_requires=["flask", "sqlalchemy"],
|
||||
scripts=[],
|
||||
packages=["mercy"],
|
||||
data_files=[],
|
||||
classifiers=[
|
||||
'Development Status :: 1 - Planning',
|
||||
'Environment :: Web Environment',
|
||||
'Framework :: Flask',
|
||||
'Intended Audience :: Healthcare Industry',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Natural Language :: English',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Topic :: Other/Nonlisted Topic',
|
||||
],
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user