-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.07 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
from setuptools import setup
from os import path
# Load the README.
wd = path.abspath(path.dirname(__file__))
with open(path.join(wd, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
ver = "3.0.0"
repo = "https://github.com/cranndarach/lexlib"
setup(name="lexlib",
version=ver,
description="Utilities for research involving words.",
long_description=long_description,
long_description_content_type="text/x-rst",
keywords="psycholinguistics research words language linguistics \
psychology cognitive science cogsci",
url=repo,
download_url="{}/tarball/{}".format(repo, ver),
project_urls={
"Documentation": "https://lexlib.readthedocs.io"
},
author="R. J. Steiner",
author_email="r.steiner@uconn.edu",
license="MIT",
packages=["lexlib"],
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License"
]
)