-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 936 Bytes
/
setup.py
File metadata and controls
34 lines (32 loc) · 936 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
from setuptools import setup, find_packages
VERSION = "0.0.3"
DESCRIPTION = "In silico lipid fragmentation generator (MS/MS spectra)"
LONG_DESCRIPTION = "In silico lipid fragmentation generator (MS/MS spectra), based on chemical standards and scientific literature."
# Setting up
setup(
name="calicolipidlibrary",
version=VERSION,
author="Bryson Bennett",
author_email="bryson@calicolabs.com",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=[],
keywords=[
"python",
"calico",
"lipid",
"MS/MS",
"in silico",
"fragmentation",
"spectral library",
"spectrum",
"MS2",
],
classifiers=[
"Environment :: Console",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 2",
],
)