-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (38 loc) · 982 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
31
32
33
34
35
36
37
38
39
40
41
42
43
import setuptools
def readfile(filename):
with open(filename, 'r+') as f:
return f.read()
setuptools.setup(
name="csodiaq",
version="0.0.1",
author="Meyer Lab",
author_email="",
description="CsoDIAq Package",
long_description=readfile('README.md'),
long_description_content_type="text/markdown",
url="",
classifiers=[
"Development Status :: 4 - Beta",
'Intended Audience :: Science/Research',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
],
packages=['csodiaq'],
python_requires='>=3.8',
license="MIT",
entry_points={
'console_scripts': [
'csodiaq = csodiaq.csodiaq:main'
]
},
install_requires=[
'pyteomics>=4.4.1',
'matplotlib>=3.3.4',
'numba>=0.53.1',
'numpy>=1.20.1',
'pandas>=1.2.2',
'Bio>=0.4.1',
'PyQt5>=5.15.4',
'lxml>=4.6.2'
],
)