-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (47 loc) · 1.83 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
45
46
47
48
49
from setuptools import setup, find_packages
setup(name='lat-epig',
version='2.0.2',
description='This programme extracts the output of a search query from the [Epigraphik-Datenbank Clauss / Slaby (EDCS)](http://www.manfredclauss.de/) in a reproducible manner and saves it as a TSV file. The output can be also plotted to a map of the Roman Empire, along with the system of Roman Provinces, roads, and cities.',
url='https://github.com/mqAncientHistory/Lat-Epig',
author='Brian Ballsun-Stanton',
author_email='brian.ballsun-stanton@mq.edu.au',
license='GPLv3',
install_requires=[
"setuptools",
"wheel",
"numpy",
"cython",
"pyshp",
"mechanicalsoup",
"bs4",
"clint",
"yaspin",
"geopandas",
"frictionless",
"pandas",
"geoplot",
"shapely",
"contextily",
"cartopy",
"cartopy",
"matplotlib"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Development Status :: 4 - Beta",
"Framework :: Jupyter",
"Intended Audience :: Education",
"Intended Audience :: Science/Research"
],
project_urls={
'Documentation': 'https://github.com/mqAncientHistory/Lat-Epig/wiki' ,
'Source': 'https://github.com/mqAncientHistory/Lat-Epig',
'Tracker': 'https://github.com/mqAncientHistory/Lat-Epig/issues',
},
package_dir={'':'src'},
packages=find_packages(where='src'),
zip_safe=False,
include_package_data=True
),