-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 1.13 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
from setuptools import setup
setup(
name='pymesoamerica',
version='0.1.0',
packages=['pymesoamerica', 'pymesoamerica_maya'],
url='',
license='',
author='Drew J. Sonne',
author_email='',
description='',
entry_points={
'console_scripts': [
'mesoamerica = pymesoamerica.cli:cli',
'pymesoamerica = pymesoamerica.cli:cli'
],
'pymesoamerica': [
'borbonicus = pymesoamerica.codices:Borbonicus',
'borgia = pymesoamerica.codices:Borgia',
'cospi = pymesoamerica.codices:Cospi',
'fejéváry-mayer = pymesoamerica.codices:FejevaryMayer',
'magliabecchiano = pymesoamerica.codices:Magliabecchiano',
'telleriano-remensis = pymesoamerica.codices:TellerianoRemensis',
'tonalamatl-aubin = pymesoamerica.codices:TonalamatlAubin',
'vaticanus-3738-a = pymesoamerica.codices:Vaticanus3738A',
'vaticanus-3773-b = pymesoamerica.codices:Vaticanus3773B',
'dresden = pymesoamerica_maya.codices:Dresden',
]
},
install_requires=['click', 'requests', 'opencv-python'],
)