-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (25 loc) · 773 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (25 loc) · 773 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name = 'xenophile',
version = '1.0.0',
author = 'Michael Leeming',
author_email = 'm.leeming@student.unimelb.edu.au',
url = 'https://github.com/mgleeming/Xenophile',
license = 'LICENSE.txt',
description = 'xenophile: Non-targeted identification of xenobiotic-protein adducts',
packages = find_packages(),
include_package_data=True,
entry_points = {
'gui_scripts' : ['xenophile = xenophile.xenophile:main']
},
install_requires = [
'numpy',
'pymzml',
'rtree',
'pyteomics',
'pyqtgraph'
],
dependency_links = ['http://pyqt.sourceforge.net/Docs/PyQt4/installation.html'],
zip_safe = False
)