-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 695 Bytes
/
setup.py
File metadata and controls
23 lines (19 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
import os
def readme():
with open('README.md', 'r') as fx:
return fx.read()
setup(name='lytest',
version='0.1.0',
description='Regression testing for klayout and phidl',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://github.com/atait/lytest/',
author='Alex Tait, Adam McCaughan, Sonia Buckley, Jeff Chiles, Jeff Shainline, Rich Mirin, Sae Woo Nam',
author_email='atait@ieee.org',
license='MIT',
packages=['lytest'],
install_requires=['pytest'],
entry_points={'console_scripts': ['lytest=lytest.command_line:cm_main']},
cmdclass={},
)