-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
32 lines (31 loc) · 1.07 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
from setuptools import setup, find_packages
import versioneer
setup(
name='pykicad',
packages=find_packages(),
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Library for working with KiCAD file formats',
long_description=open('README.md').read(),
author='David Craven',
author_email='[email protected]',
url='https://github.com/dvc94ch/pykicad',
keywords=['kicad', 'file formats', 'parser'],
install_requires=['pyparsing'],
tests_require=['pytest'],
python_requires='>=3',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: ISC License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
license='ISC',
zip_safe=False,
)