-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
40 lines (36 loc) · 1 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
#!/usr/bin/env python3
import os
from setuptools import setup
# reading METADATA from __about__.py
about = dict()
base = os.path.dirname(__file__)
path = os.path.join(base, "delphin", "rdf", "__about__.py")
exec(open(path,"r").read(), about)
# reading long description from README.md
long_description = open("README.md","r").read()
# defining setup METADATA
setup(
name=about["__name__"],
version=about["__version__"],
description=about["__summary__"],
long_description=long_description,
long_description_content_type="text/markdown",
license=about["__license__"],
packages=[
"delphin",
"delphin.rdf",
"delphin.cli"],
keywords="delphin pydelphin rdf mrs eds dmrs",
install_requires=[
"pydelphin==1.*",
"rdflib==6.*"],
# author=about["__author__"],
# author_email=about["__email__"],
# maintainer="",
# maintainer_email="",
# url=about["__url__"],
# download_url="",
# scripts=[],
# classifiers=[],
# platforms="",
)