-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (27 loc) · 900 Bytes
/
setup.py
File metadata and controls
executable file
·33 lines (27 loc) · 900 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
29
30
31
32
from setuptools import setup, find_packages
# this script for setting up the package for testing and using
VERSION = '0.0.0'
DESCRIPTION = 'Tree Data Structure for openFoam'
# Setting up
setup(
name="pyvnt",
version=VERSION,
author="",
author_email="<abs@gmail.com>",
description=DESCRIPTION,
packages_dir={"": "pyvnt"},
packages=find_packages(exclude=['test']),
install_requires=['anytree', 'dataclasses'],
keywords=['python'],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)
# Command to run: python setup.py sdist bdist_wheel
# this part is entirely optional, uncomment only if needed
# import setPackage