-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
41 lines (39 loc) · 1.36 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
import setuptools
with open('README.txt', 'r') as f:
long_description = f.read()
setuptools.setup(
name = 'schemdraw',
version = '0.8',
description = 'Electrical circuit schematic drawing',
author = 'Collin J. Delker',
author_email = '[email protected]',
url = 'https://schemdraw.readthedocs.io/',
long_description=long_description,
long_description_content_type="text/markdown",
project_urls={
'Source': 'https://bitbucket.org/cdelker/schemdraw',
},
python_requires='>=3.7',
packages = ['schemdraw',
'schemdraw.elements',
'schemdraw.logic',
'schemdraw.dsp',
'schemdraw.flow',
'schemdraw.backends',
],
package_dir={'schemdraw': 'schemdraw'},
keywords = ['circuit', 'schematic', 'electrical', 'flowchart', 'logic'],
install_requires=['numpy', 'matplotlib'],
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: End Users/Desktop',
],
)