-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
41 lines (37 loc) · 1.21 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
import os
from setuptools import find_packages, setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f:
long_description = f.read()
setup(
name='pdfoid',
version='0.1',
packages=find_packages(),
entry_points={
'console_scripts': [
'pdfoid = pdfoid.main:main',
]
},
install_requires=['tornado', 'selenium'],
extras_require={
'test': ['requests'],
},
author='Xyene',
author_email='xyene@dmoj.ca',
url='https://github.com/DMOJ/pdfoid',
description='PDF rendering server.',
long_description=long_description,
long_description_content_type='text/markdown',
# TODO(tbrindus): add more classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development',
],
)