-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (45 loc) · 1.25 KB
/
setup.py
File metadata and controls
52 lines (45 loc) · 1.25 KB
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
from setuptools import setup, find_packages
# Get version number
def getVersionNumber():
with open("scramble/VERSION", "r") as vfile:
version = vfile.read().strip()
return version
__version__ = getVersionNumber()
PROJECT_URLS = {
"Bug Tracker": "https://github.com/rs-station/scramble/issues",
"Source Code": "https://github.com/rs-station/scramble",
}
LONG_DESCRIPTION = """
A simple, maximum-likelihood model for solving
the indexing ambiguity problem for laue data.
"""
setup(
name="scramble",
version=__version__,
author="Kevin M. Dalton",
author_email="kmdalton@fas.harvard.edu",
license="MIT",
include_package_data=True,
packages=find_packages(),
long_description=LONG_DESCRIPTION,
description="It probably just randomizes your data.",
project_urls=PROJECT_URLS,
python_requires=">=3.8,<3.12",
url="https://github.com/rs-station/scramble",
install_requires=[
"reciprocalspaceship>=0.9.16",
"tqdm",
"torch",
"matplotlib",
"seaborn",
],
scripts=[
],
entry_points={
"console_scripts": [
"scramble=scramble.scramble:main",
]
},
setup_requires=["pytest-runner"],
tests_require=["pytest", "pytest-cov"],
)