ed0097b4
Miguel Barão
removes redirect ...
|
1
2
3
|
from setuptools import setup, find_packages
from perguntations import (__author__, __license__,
|
aab6a036
Miguel Barão
minor changes
|
4
|
APP_NAME, APP_VERSION, APP_DESCRIPTION)
|
4b703498
Miguel Barão
Major reorganizat...
|
5
6
7
8
9
|
with open("README.md", "r") as f:
long_description = f.read()
setup(
|
f0d08f5c
Miguel Barão
minor
|
10
|
name=APP_NAME,
|
4b703498
Miguel Barão
Major reorganizat...
|
11
12
13
14
15
16
|
version=APP_VERSION,
author=__author__,
author_email="mjsb@uevora.pt",
license=__license__,
description=APP_DESCRIPTION.split('\n')[0],
long_description=APP_DESCRIPTION,
|
f0d08f5c
Miguel Barão
minor
|
17
|
long_description_content_type="text/markdown",
|
4b703498
Miguel Barão
Major reorganizat...
|
18
19
20
|
url="https://git.xdi.uevora.pt/mjsb/perguntations.git",
packages=find_packages(),
include_package_data=True, # install files from MANIFEST.in
|
f0d08f5c
Miguel Barão
minor
|
21
22
|
python_requires='>=3.7.*',
install_requires=[
|
4b703498
Miguel Barão
Major reorganizat...
|
23
24
|
'tornado>=6.0',
'mistune',
|
f0d08f5c
Miguel Barão
minor
|
25
|
'pyyaml>=5.1',
|
4b703498
Miguel Barão
Major reorganizat...
|
26
|
'pygments',
|
cc91e4c0
Miguel Barão
Squashed commit o...
|
27
|
'sqlalchemy',
|
ffb53a93
Miguel Barão
First version tha...
|
28
|
'bcrypt>=3.1'
|
a566a5d6
Miguel Barão
refactoring. spli...
|
29
30
|
],
entry_points={
|
fbe9b8d2
Miguel Barão
add dependency sc...
|
31
|
'console_scripts': [
|
cc91e4c0
Miguel Barão
Squashed commit o...
|
32
33
|
'perguntations = perguntations.main:main',
'initdb = perguntations.initdb:main',
|
a566a5d6
Miguel Barão
refactoring. spli...
|
34
|
]
|
4b703498
Miguel Barão
Major reorganizat...
|
35
36
|
},
classifiers=[
|
a566a5d6
Miguel Barão
refactoring. spli...
|
37
|
'Development Status :: 4 - Beta',
|
4b703498
Miguel Barão
Major reorganizat...
|
38
39
40
41
42
43
44
|
'Environment :: Console',
'Intended Audience :: Education',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)
|