2020-03-04 09:01:01 +00:00
|
|
|
import os
|
2020-03-04 08:38:19 +00:00
|
|
|
from setuptools import setup, find_packages
|
2020-03-04 08:31:46 +00:00
|
|
|
|
|
|
|
with open("README.md", "r") as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
2020-03-04 09:01:01 +00:00
|
|
|
def read(fname):
|
|
|
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
|
|
|
|
2020-03-04 08:31:46 +00:00
|
|
|
setup(
|
|
|
|
name='Altium-Schematic-Parser',
|
|
|
|
version='0.0.0',
|
2020-03-04 09:01:01 +00:00
|
|
|
packages=find_packages(exclude=['tests']),
|
2020-03-04 08:31:46 +00:00
|
|
|
url='https://github.com/a3ng7n/Altium-Schematic-Parser',
|
|
|
|
license='see LICENSE',
|
|
|
|
author='Aaron Goldstein',
|
|
|
|
author_email='aaronmgoldstein@gmail.com',
|
|
|
|
description='Converts Altium .SchDoc files into json',
|
2020-03-04 08:34:33 +00:00
|
|
|
long_description=long_description,
|
2020-03-04 09:01:01 +00:00
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
install_requires=read('requirements.txt').splitlines()
|
2020-03-04 08:31:46 +00:00
|
|
|
)
|