-
Notifications
You must be signed in to change notification settings - Fork 51
/
setup.py
63 lines (54 loc) · 1.56 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
# See LICENSE.incore.incore for details
"""The setup script."""
from setuptools import setup, find_packages
import os
import riscv_ctg
# 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():
with open(os.path.join(here, "riscv_ctg/requirements.txt"),"r") as reqfile:
return reqfile.read().splitlines()
#Long Description
with open("README.rst", "r") as fh:
readme = fh.read()
setup_requirements = [ ]
test_requirements = [ ]
setup(
name='riscv_ctg',
version=riscv_ctg.__version__,
description="RISC-V CTG",
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-ctg',
author="InCore Semiconductors Pvt. Ltd.",
author_email='[email protected]',
license="BSD-3-Clause",
packages=find_packages(),
package_dir={'riscv_ctg': 'riscv_ctg'},
package_data={
'riscv_ctg': [
'requirements.txt',
'data/*',
'env/*'
]
},
install_requires=read_requires(),
python_requires='>=3.6.0',
entry_points={
'console_scripts': [
'riscv_ctg=riscv_ctg.main:cli',
],
},
include_package_data=True,
keywords='riscv_ctg',
test_suite='tests',
tests_require=test_requirements,
zip_safe=False,
)