-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (41 loc) · 1.49 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os
#python setup.py sdist upload
version = 'v0.1.9'
name = 'grcriddles'
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname), encoding="utf8").read()
except:
print("Could not read/open file: %s" % os.path.join(os.path.dirname(__file__), fname))
return ''
setup(
name = name,
packages = [name],
package_dir = {name: name},
package_data = {
name: ['functions.py', 'greek_words_corpora.csv']
},
include_package_data = True,
install_requires = ["abnum", "IPython", "pandas", "greek_accentuation", "requests", "pathlib", "tqdm"],
version = version,
description = 'GRCRiddle - Study and examination of alphabetical and isopsephical riddles of the Ancient Greeks',
long_description = read('README'),
author = 'Marko Manninen',
author_email = 'elonmedia@gmail.com',
url = 'https://github.com/markomanninen/%s' % name,
download_url = 'https://github.com/markomanninen/%s/archive/%s.tar.gz' % (name, version),
keywords = ['python', 'jupyter notebook', 'ancient greek', 'isopsephy', 'text analysis', 'natural language processing'],
platforms = ['any'],
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries",
]
)