-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·28 lines (24 loc) · 770 Bytes
/
setup.py
File metadata and controls
executable file
·28 lines (24 loc) · 770 Bytes
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
from setuptools import setup, find_packages
from odbt.core.version import get_version
VERSION = get_version()
f = open('README.md', 'r')
LONG_DESCRIPTION = f.read()
f.close()
setup(
name='odbt',
version=VERSION,
description='Use Octopart to update and add componenta to an Altium DBlib',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Peter Oostewechel',
author_email='peter_oostewechel@hotmail.com',
url='https://github.com/peeter123/odbt',
license='unlicensed',
packages=find_packages(exclude=['ez_setup', 'tests*']),
package_data={'odbt': ['templates/*']},
include_package_data=True,
entry_points="""
[console_scripts]
odbt = odbt.main:main
""",
)