-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
44 lines (42 loc) · 1.19 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
42
43
44
import setuptools
from polical import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="polical",
version=__version__,
author="Andrés Andrade",
author_email="andres.andrade17@outlook.com",
description="Este es un programa hecho en python para sincronizar tareas existentes en el aula virtual de moodle EPN con una cuenta de Trello.",
long_description=long_description,
long_description_content_type="text/markdown",
license="BSD-3",
url="https://github.com/andr3slelouch/PoliCal/",
packages=setuptools.find_packages(),
install_requires=[
"arrow",
"certifi",
"chardet",
"ics",
"idna",
"oauthlib",
"py-trello",
"python-dateutil",
"pytz",
"PyYAML",
"requests",
"requests-oauthlib",
"six",
"TatSu",
"urllib3",
"wget",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Environment :: Console",
],
include_package_data=True,
python_requires=">=3.5",
)