-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
63 lines (54 loc) · 1.86 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
"""
To update versionner:
pip install versioneer
cd pcircle-repo
versioneer install
This will bring versioneer.py etc to the latest in YOUR source tree.
Now commit everything.
make # generate tar ball, and try "make deploy" to verify
"""
import setuptools
import versioneer
import sys
requires = [
'cffi>=1.2.1',
'mpi4py>=1.3.1',
'pyxattr>=0.5.1',
'scandir>=1.1',
'numpy>=1.7.1',
'bitarray>=0.8.1'
]
details = """
More details on the package
"""
setuptools.setup(name='pcircle',
description="A parallel file system tool suite",
url="http://github.com/ORNL-TechInt/pcircle",
license="Apache",
author='Feiyi Wang',
author_email='[email protected]',
packages=['pcircle'],
data_files=[],
entry_points={
'console_scripts': [
'fcp=pcircle.fcp:main',
'fwalk=pcircle.fwalk:main',
'fsum=pcircle.fsum:main',
'fcorruptor=pcircle.fcorruptor:main',
'fdiff=pcircle.fdiff:main',
'fgen=pcircle.fgen:main',
'fprof=pcircle.fprof:main',
'fpipe=pcircle.fpipe:main'
]
},
classifiers=[
'Development Status :: 3 - Beta',
'Intended Audience :: System Administrators',
'Topic :: System :: Monitoring',
'Programming Language :: Python :: 2.7',
],
install_requires=requires,
long_description=details,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
)