forked from fmatter/pyradigms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (32 loc) · 1.11 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, find_packages
setup(
name="pyradigms",
version="0.0.4",
author="Florian Matter",
author_email="florianmatter@gmail.com",
description="Constructing and deconstructing linguistic paradigms.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/fmatter/pyradigms",
license="GNU GPLv3",
packages=find_packages(where="src"),
package_dir={"": "src"},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Text Processing :: Linguistic",
],
platforms="any",
python_requires=">=3.6",
install_requires=[
"pandas>=1.2.3",
"clldutils==2.6.0"
],
)