-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 852 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
33
34
from setuptools import setup, find_packages
setup(
name='issyours',
version='0.7.0',
description='Read-only archive for any issue tracker',
url='https://github.com/sio/issyours',
author='Vitaly Potyarkin',
author_email='sio.wtf@gmail.com',
license='AGPLv3',
platforms='any',
entry_points={
'console_scripts': [
'issyours-github=issyours_github.cli:run',
],
},
packages=find_packages(exclude=('tests',)),
include_package_data=True,
install_requires=[
'attrs',
'markdown',
'pelican',
'pymdown-extensions',
'requests',
],
extras_require={
'with-default-theme': [
'alchemy @ https://github.com/nairobilug/pelican-alchemy/tarball/master',
],
},
python_requires='>=3.3',
zip_safe=True,
)