-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
34 lines (31 loc) · 1.06 KB
/
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
28
29
30
31
32
33
34
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
long_description = (this_directory / "readme.md").read_text()
setup(
name='splatplost',
version='0.1.4',
scripts=['splatplost/splatplot', 'splatplost/splatplan'],
package_dir={'splatplost': 'splatplost'},
packages=find_packages(),
url='https://github.com/Victrid/splatplost',
license='GPLv3',
author='Weihao Jiang',
author_email='[email protected]',
description='A software-based SplatPost plotter.',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
"Development Status :: 3 - Alpha",
],
install_requires=[
"numpy~=1.23.2",
"Pillow~=9.2.0",
"setuptools~=65.3.0",
"scipy~=1.9.1",
"tqdm~=4.64.0",
"scikit-image~=0.19.3",
"libnxctrl~=0.1.7",
"tsp-solver2~=0.4.1",
]
)