-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="pylift",
author_email="[email protected]",
author="Sylvain Loiseau",
version="0.0.2",
description="Utilities for the LIFT lexicon format (Lexicon interchange format)",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sylvainloiseau/pylift",
project_urls={
"Bug Tracker": "https://github.com/sylvainloiseau/pylift",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_dir={"pylift": "src"},
package_data={"pylift": ["py.typed", 'src/schema']},
include_package_data=True,
packages=["pylift"],
install_requires=[
'lxml>=4.6.3',
'pytest>=6.2.5',
'pycldf>=1.34.1',
'cldfbench>=1.13.0',
'pandas>=1.3.5'
],
python_requires=">=3.7",
entry_points = {
'console_scripts': ['liftlex=pylift.cli:liftlex']
}
)