-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 760 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (27 loc) · 760 Bytes
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
# Authored by: Jason Lunder, EWUID: 01032294, Github: https://github.com/jlunder00/
#setup.py
import os
from setuptools import setup, find_packages
requirements = []
with open(os.path.dirname(__file__) + "/requirements.txt", "r") as R:
for line in R:
package = line.strip()
requirements.append(package)
setup(
name="TMN_DataGen",
version='1.0.0',
description="Tree Matching Network Data Generator",
author="toast",
packages=find_packages(),
install_requires=requirements,
extras_require={
'stanza': ['stanza>=1.2.3'],
'all': [
'stanza>=1.2.3',
'regex>=2022.1.18',
'unicodedata2>=15.0.0'
]
},
include_package_data=True,
zip_safe=False,
)