32 lines
989 B
Python
32 lines
989 B
Python
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',
|
|
],
|
|
)
|
|
|