-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
49 lines (46 loc) · 1.54 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
#!/usr/bin/env python
from pathlib import Path
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from logya import __version__
setup(
name='logya',
version=__version__,
description='Logya: easy to use and flexible static site generator.',
long_description=Path('README.md').read_text(),
long_description_content_type='text/markdown',
url='https://ramiro.org/logya/',
author='Ramiro Gómez',
author_email='code@ramiro.org',
maintainer='Ramiro Gómez',
maintainer_email='code@ramiro.org',
keywords=['Website Generator'],
license='MIT',
packages=['logya'],
package_data={'': ['LICENSE']},
include_package_data=True,
exclude_package_data={'': ['*.pyc']},
install_requires=Path('requirements.txt').read_text().split('\n'),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary',
'Topic :: Internet :: WWW/HTTP :: Site Management',
'Topic :: Text Processing :: Markup :: HTML'
],
entry_points={
'console_scripts': [
'logya = logya.main:main'
]
},
test_suite='tests',
tests_require=['pytest', 'tox'],
)