-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
45 lines (41 loc) · 1.42 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
44
45
#!/usr/bin/env python
__version__ = '0.14'
import sys
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='GDSLatexConverter',
version=__version__,
use_2to3=False,
author='Rene Vollmer',
author_email='[email protected]',
maintainer='Rene Vollmer',
maintainer_email='[email protected]',
description='GDS to latex pdf converter',
long_description=read('README.md'),
url='https://github.com/Aypac/GDSLatexConverter',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers'
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.6.0',
'Programming Language :: Python :: 3.6.2',
'Topic :: Scientific/Engineering',
],
# license=read('LICENCE'),
# if we want to install without tests:
# packages=find_packages(exclude=["*.tests", "tests"]),
#packages=find_packages(),
packages=['GDSLatexConverter', ],
install_requires=[
'gdspy==1.3.1',
'numpy>=1.13.3',
],
# 're>=2.2.1' is a standard part of python
# test_suite='pyqip.tests',
zip_safe=False,
)