-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (35 loc) · 1.07 KB
/
setup.py
File metadata and controls
40 lines (35 loc) · 1.07 KB
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
import sys
from os import path
from setuptools import setup, find_packages
# import versioneer
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "requirements.txt")) as requirements_file:
test_requirements = [
line
for line in requirements_file.read().splitlines()
if not line.startswith("#") and not line.startswith("git+")
]
setup(
name="tc3tg",
# version=versioneer.get_version(),
# cmdclass=versioneer.get_cmdclass(),
author="SLAC National Accelerator Laboratory",
description="TwinCAT 3 lookup table generator",
packages=find_packages(where=".", exclude=["doc", ".ci"]),
entry_points={
"console_scripts": [
],
},
include_package_data=True,
package_data={
"": ["*.TcPOU"],
},
python_requires=">=3.6",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
],
)