setup.py
1.33 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
from setuptools import setup, find_packages
from aprendizations 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/aprendizations.git",
packages=find_packages(),
include_package_data=True, # install files from MANIFEST.in
python_requires='>=3.9.*',
install_requires=[
'tornado>=6.0',
'mistune<2',
'pyyaml>=5.1',
'pygments',
'sqlalchemy>=1.4',
'bcrypt>=3.1',
'networkx>=2.4'
],
entry_points={
'console_scripts': [
'aprendizations = aprendizations.main:main',
'initdb-aprendizations = aprendizations.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',
],
)