-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 901 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
26
27
28
29
30
31
32
from setuptools import setup
import os
setup(
name='pypage',
version='1.0',
description='Generate static html pages from text marked up',
license='MIT',
author='Mega Hertz',
author_email='[email protected]',
url='callmemhz.github.io',
packages=['pypage'],
package_data={
'pypage':[os.path.relpath(os.path.join(root, name), 'pypage')
for root, _, names in os.walk(os.path.join('pypage', 'themes'))
for name in names]},
install_requires=[
'jinja2',
'markdown'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: GNU Affero General Public License v3',
],
keywords='static github pages markdown blog',
entry_points={
'console_scripts': [
'pypage = pypage.main:main'
]
}
)