-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (33 loc) · 1.16 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
from setuptools import setup
from codecs import open
import os
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'DESCRIPTION.md'), encoding='utf-8') as f:
long_description = f.read()
with open(os.path.join(here, 'VERSION.txt'), encoding='utf-8') as f:
version = f.read()
setup(name='EagleLint',
version=version,
description="EagleLint is a style and correctness checker for Eagle PCB design files.",
long_description=long_description,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Topic :: System",
"Topic :: System :: Hardware",
],
author="NVSL, University of California San Diego",
author_email="[email protected]",
install_requires=["Swoop>=0.6.3"],
packages = ["EagleLint"],
package_dir={
'EagleLint' : '.',
},
entry_points={
'console_scripts': [
'eaglelint = EagleLint.eaglelint:main',
]
},
)