forked from makeclean/csg2csg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 743 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (21 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="csg2csg",
version="0.0.27",
author="andrew davis",
author_email="andrew.davis@ukaea.uk",
description="Convert CSG geometry into different formats",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/makeclean/csg2csg",
packages=setuptools.find_packages(),
entry_points= dict(console_scripts=['csg2csg=csg2csg.__main__:main']),
install_requires=['numpy'],
classifiers=[
"Programming Language :: Python :: 3",
# "License :: OSI Approved :: License name here",
"Operating System :: OS Independent",
],
)