This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
/
setup.py
58 lines (50 loc) · 1.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
# See LICENSE.incore for details
"""The setup script."""
import os
from setuptools import setup, find_packages
# Base directory of package
here = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
with codecs.open(os.path.join(here, *parts), 'r') as fp:
return fp.read()
def read_requires(name):
with open(os.path.join(here, "riscv_isac", name),"r") as reqfile:
return reqfile.read().splitlines()
#Long Description
with open("README.rst", "r") as fh:
readme = fh.read()
setup_requirements = [ ]
setup(
name='riscv_isac',
version='0.18.0',
description="RISC-V ISAC",
long_description=readme + '\n\n',
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: BSD License",
"Development Status :: 4 - Beta"
],
url='https://github.com/riscv/riscv-isac',
author="InCore Semiconductors Pvt. Ltd.",
author_email='[email protected]',
license="BSD-3-Clause",
packages=find_packages(),
package_dir={'riscv_isac': 'riscv_isac'},
package_data={
'riscv_isac': [
'requirements.txt'
]
},
install_requires=read_requires("requirements.txt"),
python_requires='>=3.6.0',
entry_points={
'console_scripts': [
'riscv_isac=riscv_isac.main:cli',
],
},
include_package_data=True,
keywords='riscv_isac',
test_suite='tests',
tests_require=read_requires("test_requirements.txt"),
zip_safe=False,
)