Add setup.py
authorDavid Kerkeslager <kerkeslager@gmail.com>
Thu, 28 Nov 2019 18:59:46 +0000 (13:59 -0500)
committerDavid Kerkeslager <kerkeslager@gmail.com>
Thu, 28 Nov 2019 18:59:46 +0000 (13:59 -0500)
setup.py [new file with mode: 0644]

diff --git a/setup.py b/setup.py
new file mode 100644 (file)
index 0000000..905fc49
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,22 @@
+import setuptools
+
+with open('README.md', 'r') as fh:
+    long_description = fh.read()
+
+setuptools.setup(
+    name='phial',
+    version='0.0.1',
+    scripts=['phial.py'] ,
+    author='David Kerkeslager',
+    author_email='kerkeslager+pypi@gmail.com',
+    description='A minimalist functional web framework',
+    long_description=long_description,
+    long_description_content_type='text/markdown',
+    url='https://github.com/kerkeslager/phial',
+    packages=setuptools.find_packages(),
+    classifiers=[
+        'Programming Language :: Python :: 3',
+        'License :: OSI Approved :: MIT License',
+        'Operating System :: OS Independent',
+    ],
+)