-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
39 lines (34 loc) · 1.08 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
from setuptools import setup
import os
from pathlib import Path
current_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(current_directory, 'README.rst')) as f:
long_description = f.read()
# search for files to include
package_data = []
for f in Path(os.path.join(current_directory, "pysv")).rglob("*"):
path = os.path.join(current_directory, f.relative_to(current_directory))
ext = os.path.splitext(path)[-1]
if ext in {".cc", ".hh", ".cpp", ".h", ".c", ".txt", ".in", ".cmake", ".sv"} and "test" not in path:
package_data.append(path)
setup(
name='pysv',
version='0.3.1',
author='Keyi Zhang',
author_email='[email protected]',
long_description=long_description,
long_description_content_type='text/x-rst',
packages=['pysv'],
url="https://github.com/Kuree/pysv",
install_requires=[
"astor",
],
python_requires=">=3.6",
extras_require={
"test": ["numpy", "pytest"],
"test-full": ["tensorflow-cpu", "pytest"]
},
package_data={
"pysv": package_data
}
)