summaryrefslogtreecommitdiff
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
...
| * | fix #587: re-apply the relative import changes and use setup.py build_ext -i ↵Giampaolo Rodola2015-02-091-6/+6
| | | | | | | | | | | | in order to fix the import error when using the interactive interpreter from within the root directory
* | | merge from masterGiampaolo Rodola2015-01-031-0/+1
|\ \ \ | |/ /
| * | #578: another attempt to fix import failuresGiampaolo Rodola2015-02-091-6/+6
| | |
| * | fix most warnings and test failures on win32Gabi Davar2015-02-071-0/+1
| | |
| * | mergeGiampaolo Rodola2015-02-071-6/+6
| | |
| * | temporarily revert previous commit in order to not create conflicts with PR ↵Giampaolo Rodola2015-02-061-8/+2
| | | | | | | | | | | | https://github.com/giampaolo/psutil/pull/578
| * | setup.py: include _psutil_common.c in the list of extensions which should be ↵Giampaolo Rodola2015-02-061-2/+8
| | | | | | | | | | | | compiled - both platforms do not use them but maybe in the future they might
* | | merge from masterGiampaolo Rodola2015-02-021-16/+17
|\ \ \ | |/ /
| * | rename _PSUTIL_VERSION to PSUTIL_VERSIONGiampaolo Rodola2015-01-021-1/+1
| | |
| * | fix #564: add a sanity check to make sure the python module is not using a C ↵Giampaolo Rodola2015-01-021-2/+11
| |/ | | | | | | extension module whose version is different than the current one
| * add 'pstree' to the list of classifiers/keywordsGiampaolo Rodola2014-11-221-4/+4
| |
| * #521 remove python 2.4 and 2.5 supportGiampaolo Rodola2014-11-011-10/+2
| |
* | #376: implement ifconfig con Windows - still missing: MAC and broadcast ↵Giampaolo Rodola2014-10-041-1/+1
|/ | | | addresses retrieval
* github migrationGiampaolo Rodola'2014-05-231-3/+3
|
* Fix issue 504: can't build RPM packages on LinuxGiampaolo Rodola'2014-05-131-1/+1
|
* Makefile: improve command to run a specific test given a nameGiampaolo Rodola'2014-04-161-0/+1
|
* add pypip imagesGiampaolo Rodola'2014-02-281-1/+1
|
* update docstring and setup.py metadataGiampaolo Rodola'2013-12-211-5/+9
|
* absolute C module imports do not really work after allGiampaolo Rodola'2013-12-171-6/+6
|
* fix HERE path in setup.py + update makefileGiampaolo Rodola'2013-12-171-1/+1
|
* setup.py little refactoringGiampaolo Rodola'2013-12-161-3/+5
|
* give C modules in setup.py an absolute path so that from _ps*.py scripts we ↵Giampaolo Rodola'2013-12-161-6/+6
| | | | can do 'from psutil import _psutil_{system}'
* rename windows modules by removing the 'ms' prefix in py, c, and h filesGiampaolo Rodola'2013-12-111-5/+5
|
* pep8ify line > 80 charsGiampaolo Rodola'2013-12-081-1/+3
|
* get rid of 'setup.py clean' command; now that we have a Makefile that is no ↵Giampaolo Rodola'2013-12-071-29/+1
| | | | longer necessary
* Fix issue #348 (Windows XP): DLL load failed on mudule importGiampaolo Rodola'2013-11-251-0/+2
|
* pep8ifyGiampaolo Rodola'2013-11-221-12/+13
|
* prlimit(): check linux kernel version in the C code instead of defining a ↵Giampaolo Rodola'2013-11-061-31/+2
| | | | macro in setup.py
* revert revision Revision: 6f21cd24ff7c: _WIN32_WINNT and _AVAIL_WINVER_ ↵release-1.1.2Giampaolo Rodola'2013-10-221-1/+4
| | | | macros were there for a reason that is make mingw happy
* fix issue 442: the damn prlimit(2) is not available on Debian 6.0.0 when ↵Giampaolo Rodola'2013-10-191-1/+1
| | | | it's supposed to me. Try to enforce the presence check.
* sort classifiersGiampaolo Rodola'2013-10-191-13/+15
|
* small refactoring of macros on Win: rename _WIN32_WINNT to -> PSUTIL_WINVER ↵Giampaolo Rodola'2013-10-191-5/+2
| | | | and get rid of the unused _AVAIL_WINVER_
* merge cset 7387909204dd erroneously committed into netstat2 branch into defaultGiampaolo Rodola'2013-10-111-22/+19
|
* issue 438: define a HAVE_PRLIMIT macro in setup.py enable for kernels >= 2.6.36Giampaolo Rodola'2013-10-071-1/+32
|
* re-establish python 2.4 compatibilityGiampaolo Rodola'2013-10-041-82/+101
|
* pylintGiampaolo Rodola'2013-10-031-4/+4
|
* pre-release update including hosting on pypiGiampaolo Rodola'2013-09-281-2/+0
|
* Fix issue 412: implement process resource limits on LinuxGiampaolo Rodola'2013-07-241-1/+1
|
* (sunos) link 'nsl' in setup.py - this is necessary because otherwise the C ↵Giampaolo Rodola'2013-06-161-1/+1
| | | | compiler complains about inet_ntop, see http://cboard.cprogramming.com/cplusplus-programming/128326-undefined-symbol-when-compiling-socket-program.html
* setup.py clean: delete more stuffGiampaolo Rodola'2013-06-151-7/+13
|
* setup.py: add SunOS/Solaris to classifiersGiampaolo Rodola'2013-06-101-0/+2
|
* implement a custom 'python setup.py clean' command which gets rid of junk filesGiampaolo Rodola'2013-06-101-0/+22
|
* update psutil project ownershipGiampaolo Rodola'2013-06-081-2/+2
|
* (sunos) merge from default branchGiampaolo Rodola'2012-06-081-3/+3
|\
| * We can now quickly run tests with "python setup.py test". Reference ↵Giampaolo Rodola'2013-05-291-0/+1
| | | | | | | | http://stackoverflow.com/questions/7580939/why-are-there-no-makefiles-for-automation-in-python-projects#answer-7582896
| * Remove "$Id$" occurrences from source code files. They were used by svn ↵Giampaolo Rodola'2013-03-261-3/+1
| | | | | | | | propset functionnality which no longer applies now that we're using Mercurial.
| * Revert r1548 (issue 340): ignoring files with handle.GrantedAccess == ↵Giampaolo Rodola'2012-12-131-0/+1
| | | | | | | | 0x00120089 translates into skipping *all* legitimate files.
| * setup.py refactoring: get rid of version string; from now on that gets ↵Giampaolo Rodola'2012-07-181-8/+33
| | | | | | | | maintain it in __init__.py only; also update README file
| * little OSX refactoring + update version + get rid of old 'doc' directory ↵Giampaolo Rodola'2012-07-181-1/+1
| | | | | | | | references from MANIFEST.in
| * update version (sigh!)Giampaolo Rodola'2012-06-291-1/+1
| |