-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
43 lines (37 loc) · 1.32 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
#- Note to self:
# The setup.py file was used from old versions of pip
# After PEP 518 (don't know which version)
# it was not used anymore.
# Basically, the pyproject.toml and setup.py must be kept in sync
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="cicsim",
version="0.1.12",
author="Carsten Wulff",
author_email="[email protected]",
description="Custom IC Creator Simulation Tools",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/wulffern/cicsim",
packages=setuptools.find_packages(),
python_requires='>=3.8',
entry_points = {'console_scripts': [
'cicsim = cicsim.cicsim:cli',
]},
install_requires = 'matplotlib numpy jinja2 pandas '.split(),
classifiers = [
'Development Status :: 1 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Natural Language :: English',
"License :: OSI Approved :: MIT License",
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Utilities',
'Topic :: Scientific/Engineering',
],
)