-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
53 lines (48 loc) · 1.85 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
#!/usr/bin/env python3
# License: MIT License
# Copyright (C) 2020 Jochen Steimel
import os
from setuptools import setup, find_packages
AUTHOR_NAME = "Jochen Steimel"
AUTHOR_EMAIL = "[email protected]"
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError:
return "File '%s' not found.\n" % fname
setup(
name="pyflowsheet",
version="0.2.1",
description="A Python library for creating process flow diagrams (PFD) for process engineering using SVG drawings.",
author=AUTHOR_NAME,
email=AUTHOR_EMAIL,
url="https://github.com/nukleon84/pyflowsheet",
python_requires=">=3.7",
packages=find_packages(),
provides=["pyflowsheet"],
long_description=read("readme.md") + read("changelog.md"),
long_description_content_type="text/markdown",
platforms="OS Independent",
license="MIT License",
install_requires=["svgwrite", "pathfinding"],
extras_require={"plots": ["matplotlib"]},
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Intended Audience :: Developers",
"Topic :: Multimedia :: Graphics",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Chemistry",
],
project_urls={
"Bug Reports": "http://github.com/nukleon84/pyflowsheet/issues",
"Source": "http://github.com/nukleon84/pyflowsheet/",
},
)