-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (30 loc) · 1006 Bytes
/
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
import setuptools
import os
import pathlib
from src.tapas_base import util_system as us
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="tapas-utaustin",
version="0.0.1",
author="Thomas Logan",
author_email="[email protected]",
description="A language analysis and synthesis system",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/trishullab/tapas",
project_urls={
"Bug Tracker": "https://github.com/trishullab/tapas/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache License",
"Operating System :: OS Independent",
],
package_dir={"": "src"},
packages=(x := setuptools.find_packages(where="src"), print(x), x)[-1],
python_requires=">=3.6",
package_data = {
'tapas_res': us.all_paths(us.project_path('tapas_res'))
}
)