-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 684 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import setuptools
with open("longdescription.txt", "r") as f:
long_description = f.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
try:
setuptools.setup(
name = 'mathreader',
version = '0.162',
author = 'Caroline Reis',
author_email = 'caroline.reis@rede.ulbra.br',
long_description = long_description,
#long_description_content_type="text/markdown",
url="https://github.com/carolreis/mathreader",
packages = setuptools.find_packages(),
install_requires=required,
include_package_data=True,
python_requires='>=3.6'
)
except Exception as e:
pass