-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
21 lines (17 loc) · 907 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import setuptools
with open('README.md') as f:
long_desc = f.read()
setuptools.setup(name='piccup',
version='0.1.1',
author='Alexander Juda',
description="Render HTML from Python using plain data structures, inspired by Clojure's Hiccup",
long_description=long_desc,
long_description_content_type='text/markdown',
url='https://github.com/alexjuda/piccup',
packages=setuptools.find_packages(),
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Markup :: HTML'],
python_requires='>=3')