-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (46 loc) · 1.58 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
'''
Biisan
============================================================
Static blog site generator.
'''
from setuptools import setup
from biisan import __version__
requirements = []
with open('requirements/requirements.txt', 'r') as f:
requirements = [req.strip() for req in f.readlines() if req]
with open('README.md') as f:
long_description = f.read()
setup(
name='biisan',
version=__version__,
description='Static site generator.',
keywords='static site generator, docutils, customizable',
author='makoto tsuyuki',
author_email='[email protected]',
url='https://github.com/tsuyukimakoto/biisan',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Documentation',
],
zip_safe=False,
install_requires=requirements,
packages=['biisan', 'biisan.directives', 'biisan.processors'],
package_data={
'biisan': ['templates/*', 'templates/components/*', ],
},
)