-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 1.14 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
#!/usr/bin/python
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.md', 'r', encoding='utf-8') as arq:
readme = arq.read()
setup(
name='pytaxon',
version='v0.2.6',
setup_requires=['wheel'],
license='MIT License',
author='Marco Aurélio Proença Neto, Marcos Paulo Alves de Sousa',
long_description=readme,
long_description_content_type="text/markdown",
author_email='[email protected]',
keywords='pytaxon',
description=u'Pytaxon é uma aplicação open source de auxílio à pesquisa para identificação de erros e correção de nomenclatura taxonômica das espécies da biodiversidade',
packages=['pytaxon'],
package_data={'pytaxon': ['assets/pytaxon_logo.png']},
entry_points={
'console_scripts': [
'pytaxon = pytaxon.main:main',
'pytaxonGUI = pytaxon.pytaxon_gui:pytaxon_gui'
],
},
install_requires=['pandas', 'openpyxl', 'tqdm', 'xlrd', 'requests',
'argparse', 'ttkthemes', 'tk', 'matplotlib', 'customtkinter',
'CTkMessagebox', 'pytest'],
url='https://github.com/pytaxon-cli'
)