forked from michaelgale/pcbflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
90 lines (76 loc) · 2.71 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import os.path
import sys
import setuptools
PACKAGE_NAME = "pcbflow"
MINIMUM_PYTHON_VERSION = "3.6"
loc = os.path.abspath(os.path.dirname(__file__))
with open(loc + "/requirements.txt") as f:
requirements = f.read().splitlines()
required = []
dependency_links = []
# do not add to required lines pointing to git repositories
EGG_MARK = "#egg="
for line in requirements:
if (
line.startswith("-e git:")
or line.startswith("-e git+")
or line.startswith("git:")
or line.startswith("git+")
):
if EGG_MARK in line:
package_name = line[line.find(EGG_MARK) + len(EGG_MARK) :]
required.append(package_name)
dependency_links.append(line)
else:
print("Dependency to a git repository should have the format:")
print("git+ssh://[email protected]/xxxxx/xxxxxx#egg=package_name")
else:
required.append(line)
def check_python_version():
"""Exit when the Python version is too low."""
if sys.version < MINIMUM_PYTHON_VERSION:
sys.exit("Python {0}+ is required.".format(MINIMUM_PYTHON_VERSION))
def read_package_variable(key, filename="__init__.py"):
"""Read the value of a variable from the package without importing."""
module_path = os.path.join(PACKAGE_NAME, filename)
with open(module_path) as module:
for line in module:
parts = line.strip().split(" ", 2)
if parts[:-1] == [key, "="]:
return parts[-1].strip("'")
sys.exit("'{0}' not found in '{1}'".format(key, module_path))
def build_description():
"""Build a description for the project from documentation files."""
try:
readme = open("README.md").read()
changelog = open("CHANGELOG.md").read()
except IOError:
return "<placeholder>"
else:
return readme + "\n" + changelog
check_python_version()
setuptools.setup(
name=read_package_variable("__project__"),
version=read_package_variable("__version__"),
description="A python library for PCB layout.",
url="https://github.com/michaelgale/pcbflow",
author="Michael Gale",
author_email="[email protected]",
packages=setuptools.find_packages(),
long_description=build_description(),
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
],
install_requires=required,
dependency_links=dependency_links,
scripts=["scripts/lbrlist.py", "scripts/kilist.py"],
)