-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 881 Bytes
/
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = 'SchemDraw',
packages = ['SchemDraw'],
version = '0.3.1a',
description = 'Electrical circuit schematic drawing',
author = 'Collin J. Delker',
author_email = '[email protected]',
url = 'http://cdelker.bitbucket.io/SchemDraw',
keywords = ['circuit', 'schematic', 'electrical'],
install_requires=['numpy', 'matplotlib'],
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'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',
],
)