setup.py
1.34 KB
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
'''
Perguntations setup
'''
from setuptools import setup, find_packages
from perguntations import (__author__, __license__,
APP_NAME, APP_VERSION, APP_DESCRIPTION)
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name=APP_NAME,
version=APP_VERSION,
author=__author__,
author_email='mjsb@uevora.pt',
license=__license__,
description=APP_DESCRIPTION.split('\n')[0],
long_description=APP_DESCRIPTION,
long_description_content_type='text/markdown',
url='https://git.xdi.uevora.pt/mjsb/perguntations.git',
packages=find_packages(),
include_package_data=True, # install files from MANIFEST.in
python_requires='>=3.9',
install_requires=[
'bcrypt>=3.1',
'mistune<2.0',
'pyyaml>=5.1',
'pygments',
'schema>=0.7.5',
'sqlalchemy>=1.4',
'tornado>=6.1',
],
entry_points={
'console_scripts': [
'perguntations = perguntations.main:main',
'initdb = perguntations.initdb:main',
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Education',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)