-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.py
48 lines (45 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from setuptools import setup, Extension
DISTNAME = 'tethne'
AUTHOR = 'E. Peirson, Digital Innovation Group @ ASU'
MAINTAINER = 'Erick Peirson'
MAINTAINER_EMAIL = 'erick [dot] peirson [at] asu [dot] edu'
DESCRIPTION = ('Bibliographic network and corpus analysis for historians')
LICENSE = 'GNU GPL 3'
URL = 'http://diging.github.io/tethne/'
VERSION = '0.8'
PACKAGES = ['tethne',
'tethne.analyze',
'tethne.classes',
'tethne.model',
'tethne.model.corpus',
'tethne.networks',
'tethne.readers',
'tethne.writers',
'tethne.plot']
setup(
name=DISTNAME,
author=AUTHOR,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
license=LICENSE,
url=URL,
version=VERSION,
packages = PACKAGES,
include_package_data=True,
install_requires=[
"networkx",
"iso8601",
"rdflib",
"chardet",
"html5lib",
"isodate",
"pdfdocument",
"pdfminer.six",
"python-magic",
"Unidecode",
"nltk",
"numpy",
"requests"
],
)