forked from jungmannlab/picasso
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 663 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (23 loc) · 663 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
from setuptools import setup
setup(
name="picasso",
version="0.3.3",
author="Joerg Schnitzbauer, Maximilian T. Strauss",
author_email=(
"joschnitzbauer (at) gmail.com, straussmaximilian (at) gmail.com"
),
url="https://github.com/jungmannlab/picasso",
packages=["picasso", "picasso.gui"],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
package_data={
"picasso": [
"gui/icons/*.ico",
"config_template.yaml",
]
},
)