-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (34 loc) · 907 Bytes
/
Copy pathsetup.py
File metadata and controls
38 lines (34 loc) · 907 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
33
34
35
36
37
from setuptools import setup, find_packages
# how to release:
# UPDATE VERSION IN 3 PLACES: Ais/core/config.py, setup.py, docs/conf.py
# push to pypi:
# python setup.py sdist
# twine upload dist/*
setup(
name='Pom-cryoET',
version='1.2.0',
packages=find_packages(),
entry_points={'console_scripts': ['pom=Pom.main:main']},
license='GPL v3',
author='Mart G. F. Last',
author_email='mlast@mrc-lmb.cam.ac.uk',
long_description_content_type="text/markdown",
package_data={
'': ['*.png', '*.glsl', '*.pdf', '*.txt', '*.json'],
'Pom.core': ['defaults/*.json']
},
include_package_data=True,
install_requires=[
"matplotlib",
"pandas",
"streamlit>=1.50.0",
"streamlit-aggrid",
"starfile",
"tqdm",
"mrcfile",
"scipy",
"glfw",
"pyopengl",
"scikit-image"
]
)