forked from cmelab/GIXStapose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (24 loc) · 791 Bytes
/
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
import os
from setuptools import setup
NAME = "gixstapose"
# Load the package's __version__.py module as a dictionary.
here = os.path.abspath(os.path.dirname(__file__))
about = {}
with open(os.path.join(here, NAME, "__version__.py")) as f:
exec(f.read(), about)
setup(
name=NAME,
version=about["__version__"],
description="An interactive structure viewer alongside its diffraction pattern",
url="https://github.com/cmelab/GIXStapose",
author="Jenny Fothergill",
author_email="[email protected]",
license="BSD-3",
packages=["gixstapose"],
package_dir={"gixstapose": "gixstapose"},
package_data={"gixstapose": ["data"]},
zip_safe=False,
entry_points={
"console_scripts": ["gixstapose=gixstapose.main:main"],
},
)