-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (25 loc) · 905 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
from setuptools import setup, find_packages
MAJOR = 0
MINOR = 1
PATCH = 0
VERSION = "{}.{}.{}".format(MAJOR, MINOR, PATCH)
#with open("pepr2ds/version.py", "w") as f:
# f.write("__version__ = '{}'\n".format(VERSION))
setup(
name='pepr2ds',
version=VERSION,
# url='http',
license='GPL3',
author='Thibault Tubiana and Phillippe Samer',
author_email='T. Tubiana <[email protected]>, P. Samer <[email protected]>',
description='PePr2DS: Create and analysis dataset for peripheral membrane proteins',
platforms=["Linux", "Solaris", "Mac OS-X", "darwin", "Unix", "win32"],
# install_requires=['matplotlib',
# 'numpy',
# 'pandas',
# 'scipy >= 0.18',
# 'numba',
# 'mdtraj >= 1.9.5',
# 'PyQt5'],
packages=find_packages(),
)