yapf + pylint + add style checks to tests
This commit is contained in:
parent
d52fffe826
commit
a1ca4c6579
18 changed files with 130 additions and 299 deletions
35
setup.py
35
setup.py
|
|
@ -1,19 +1,20 @@
|
|||
from setuptools import setup, find_packages
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
setup(name='py-stl',
|
||||
version='0.2',
|
||||
description='TODO',
|
||||
url='http://github.com/mvcisback/py-stl',
|
||||
author='Marcell Vazquez-Chanlatte',
|
||||
author_email='marcell.vc@eecs.berkeley.edu',
|
||||
license='MIT',
|
||||
install_requires=[
|
||||
'funcy',
|
||||
'parsimonious',
|
||||
'lenses',
|
||||
'sympy',
|
||||
'bitarray',
|
||||
'traces',
|
||||
],
|
||||
packages=find_packages(),
|
||||
setup(
|
||||
name='py-stl',
|
||||
version='0.2',
|
||||
description='TODO',
|
||||
url='http://github.com/mvcisback/py-stl',
|
||||
author='Marcell Vazquez-Chanlatte',
|
||||
author_email='marcell.vc@eecs.berkeley.edu',
|
||||
license='MIT',
|
||||
install_requires=[
|
||||
'funcy',
|
||||
'parsimonious',
|
||||
'lenses',
|
||||
'sympy',
|
||||
'bitarray',
|
||||
'traces',
|
||||
],
|
||||
packages=find_packages(),
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue