Compare commits
No commits in common. '674f3dea4a6c3c00ab81bdc0e8555e08a3b244a0' and '187d176cfd7395be2781731937cd4b50e81ad6c8' have entirely different histories.
674f3dea4a
...
187d176cfd
3 changed files with 41 additions and 38 deletions
@ -1,32 +0,0 @@ |
|||||||
[project] |
|
||||||
name = "kyupy" |
|
||||||
version = "0.0.5" |
|
||||||
authors = [ |
|
||||||
{ name="Stefan Holst", email="mail@s-holst.de" }, |
|
||||||
] |
|
||||||
description = 'High-performance processing and analysis of non-hierarchical VLSI designs' |
|
||||||
readme = "README.rst" |
|
||||||
requires_python = ">=3.8" |
|
||||||
dependencies = [ |
|
||||||
"numpy>=1.17.0", |
|
||||||
"lark-parser>=0.8.0", |
|
||||||
] |
|
||||||
classifiers = [ |
|
||||||
"Development Status :: 3 - Alpha", |
|
||||||
"Environment :: GPU :: NVIDIA CUDA", |
|
||||||
"Intended Audience :: Science/Research", |
|
||||||
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)", |
|
||||||
"License :: OSI Approved :: MIT License", |
|
||||||
"Operating System :: OS Independent", |
|
||||||
"Programming Language :: Python :: 3", |
|
||||||
] |
|
||||||
license = "MIT" |
|
||||||
license-files = ["LICENSE.txt"] |
|
||||||
|
|
||||||
[project.urls] |
|
||||||
homepage = "https://github.com/s-holst/kyupy" |
|
||||||
|
|
||||||
[build-system] |
|
||||||
requires = ["hatchling"] |
|
||||||
build-backend = "hatchling.build" |
|
||||||
|
|
@ -0,0 +1,40 @@ |
|||||||
|
from setuptools import setup, find_packages |
||||||
|
|
||||||
|
with open('README.rst', 'r') as f: |
||||||
|
long_description = f.read() |
||||||
|
|
||||||
|
setup( |
||||||
|
name='kyupy', |
||||||
|
version='0.0.5', |
||||||
|
description='High-performance processing and analysis of non-hierarchical VLSI designs', |
||||||
|
long_description=long_description, |
||||||
|
long_description_content_type='text/x-rst', |
||||||
|
packages=find_packages(where='src'), |
||||||
|
package_dir={'': 'src'}, |
||||||
|
url='https://github.com/s-holst/kyupy', |
||||||
|
author='Stefan Holst', |
||||||
|
author_email='mail@s-holst.de', |
||||||
|
python_requires='>=3.8', |
||||||
|
install_requires=[ |
||||||
|
'numpy>=1.17.0', |
||||||
|
'lark-parser>=0.8.0' |
||||||
|
], |
||||||
|
extras_requires={ |
||||||
|
'dev': [ |
||||||
|
'pytest>=6.1', |
||||||
|
], |
||||||
|
}, |
||||||
|
classifiers=[ |
||||||
|
'Development Status :: 3 - Alpha', |
||||||
|
'Environment :: GPU :: NVIDIA CUDA', |
||||||
|
'Intended Audience :: Science/Research', |
||||||
|
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)', |
||||||
|
'License :: OSI Approved :: MIT License', |
||||||
|
'Operating System :: OS Independent', |
||||||
|
'Programming Language :: Python :: 3', |
||||||
|
'Programming Language :: Python :: 3 :: Only', |
||||||
|
'Programming Language :: Python :: 3.8', |
||||||
|
'Programming Language :: Python :: 3.9', |
||||||
|
'Programming Language :: Python :: 3.10', |
||||||
|
], |
||||||
|
) |
Loading…
Reference in new issue