-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Switch to packaging * install package * fix * support isolated builds
- Loading branch information
1 parent
4ae75e3
commit 441de9c
Showing
4 changed files
with
20 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools", "setuptools-scm"] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,10 +7,14 @@ | |
""" | ||
import codecs | ||
import os | ||
import sys | ||
|
||
from nodeenv import nodeenv_version | ||
from setuptools import setup | ||
|
||
sys.path.insert(0, '.') | ||
|
||
from nodeenv import nodeenv_version | ||
|
||
|
||
def read_file(file_name): | ||
return codecs.open( | ||
|
@@ -32,7 +36,7 @@ def read_file(file_name): | |
license='BSD', | ||
author='Eugene Kalinin', | ||
author_email='[email protected]', | ||
install_requires=['setuptools'], | ||
install_requires=['packaging'], | ||
python_requires=( | ||
">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*" | ||
), | ||
|