forked from darkdarkfruit/python-weed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
61 lines (49 loc) · 1.53 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
from setuptools import setup, find_packages, Command
import os
from weed.version import __version__
DESCRIPTION = "A python module for weed-fs"
LONG_DESCRIPTION = None
try:
LONG_DESCRIPTION = open('README.md').read()
except:
pass
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules',
]
class PyTest(Command):
''' class for py.test '''
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
import sys,subprocess
# "test.pytest.py" is a file generated by command:
# " py.test --genscript=test.pytest.py "
pytest_file = 'weed/_test_weed_pytest.py'
errno = subprocess.call([sys.executable, pytest_file])
raise SystemExit(errno)
setup(name='python-weed',
version=__version__,
packages=find_packages(),
author='darkdarkfruit',
author_email='[email protected]',
url='https://github.com/darkdarkfruit/python-weed',
license='MIT',
include_package_data=True,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
platforms=['any'],
classifiers=CLASSIFIERS,
install_requires=['requests'],
requires=['requests'],
cmdclass = {'test' : PyTest},
# test_suite='py.test',
)