-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
40 lines (36 loc) · 1.27 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
import setuptools
#- 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
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="cicpy",
version="0.1.7",
author="Carsten Wulff",
author_email="carsten@wulff.no",
description="Custom IC Creator Python Frontend",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/wulffern/cicpy",
packages=['cicpy'],
python_requires='>=3.8',
entry_points = {'console_scripts': [
'cicpy = cicpy.cic:cli',
]},
install_requires = 'matplotlib numpy click svgwrite pyyaml pandas'.split(),
classifiers = [
'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',
],
)