-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (22 loc) · 784 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (22 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import setuptools
with open("mechasvg\\supl\\README.txt", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="mechaSVG",
version="0.1.1",
author="Ricardo Almir Angnes",
author_email="ricardo_almir@hotmail.com",
description="mechaSVG is a python & tk application for creating good-looking energy profile diagrams as Scalable Vector Graphics.",
long_description=long_description,
license="MIT",
url="https://github.com/ricalmang/mechaSVG",
keywords = ['chemistry'],
install_requires = ["openpyxl"],
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)