-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·25 lines (21 loc) · 973 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#! /usr/bin/env python3
from distutils.core import setup
import buildwebpagelib as bw
# TODO url, download_url
config = {'name': 'buildwebpage',
'version': bw.VERSION,
'author': 'Johannes Englisch',
'author_email': '[email protected]',
'description': 'Build static webpages using a template',
'long_description': bw.DESCRIPTION,
'classifiers': ['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Site Management'],
'requires': ['Markdown'],
'packages': ['buildwebpagelib'],
'scripts': ['buildwebpage']}
setup(**config)