-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (27 loc) · 852 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
28
29
30
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.0.0',
packages=find_packages(),
entry_points={'console_scripts': ['pom=Pom.main:main']},
license='GPL v3',
author='mgflast',
author_email='[email protected]',
long_description_content_type="text/markdown",
package_data={'': ['*.png', '*.glsl', '*.pdf', '*.txt', '*.json']},
include_package_data=False, # weirdly, the above filetypes _are_ included when this parameter is set to False.
install_requires=[
"Ais-cryoET>=1.0.41",
"matplotlib",
"openpyxl",
"pandas",
"streamlit",
"streamlit-aggrid",
"Pommie"
]
)