-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
37 lines (35 loc) · 1.11 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
from setuptools import setup
setup(
name='devsim',
packages=['devsim'],
version='0.0.1',
description='DEVSIM TCAD Simulator',
url='https://devsim.org',
license='Apache 2.0',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
author='Juan Sanchez',
author_email='[email protected]',
include_package_data=True,
project_urls={
'Documentation': 'https://devsim.org/',
'Source': 'https://github.com/devsim/devsim',
'Tracker': 'https://github.com/devsim/devsim/issues',
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)',
'Topic :: Scientific/Engineering :: Physics',
],
keywords='TCAD semiconductors',
python_requires='>=3',
install_requires=[
'numpy'
],
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False
)