-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
81 lines (63 loc) · 2.49 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
"""
========================================================================
setup.py
========================================================================
setup.py inspired by the PyPA sample project:
https://github.com/pypa/sampleproject/blob/master/setup.py
"""
from os import path
from setuptools import find_packages, setup
#-------------------------------------------------------------------------
# get_version
#-------------------------------------------------------------------------
def get_version():
# Check Python version compatibility
import sys
assert sys.version_info[0] > 2, "Python 2 is no longer supported!"
result = "?"
with open("pymtl3_net/__init__.py") as f:
for line in f:
if line.startswith("__version__"):
_, result, _ = line.split('"')
return result
#-------------------------------------------------------------------------
# get_long_descrption
#-------------------------------------------------------------------------
def get_long_description():
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
return f.read()
#-------------------------------------------------------------------------
# setup
#-------------------------------------------------------------------------
setup(
name = 'pymtl3-net',
version = get_version(),
description = 'PyMTL3-Net: an open-source Python-based framework for modeling, testing, and evaluating on-chip interconnection networks',
long_description = get_long_description(),
long_description_content_type="text/markdown",
url = 'https://github.com/cornell-brg/pymtl3-net',
author = 'Batten Research Group',
author_email = '[email protected]',
# BSD 3-Clause License:
# - http://choosealicense.com/licenses/bsd-3-clause
# - http://opensource.org/licenses/BSD-3-Clause
license='BSD',
# Pip will block installation on unsupported versions of Python
python_requires=">=3.7",
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3 :: Only',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)',
],
packages = find_packages(),
scripts = [ 'script/pymtl3-net' ],
install_requires = [
'pymtl3',
'ruamel.yaml'
],
)