Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
python-poetry
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
python-poetry
Commits
7e7f14a3
Unverified
Commit
7e7f14a3
authored
Mar 08, 2018
by
Sébastien Eustace
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
REmove setup.py as it is no longer needed
parent
2f129317
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
59 deletions
+2
-59
.gitignore
+1
-0
.travis.yml
+1
-1
setup.py
+0
-58
No files found.
.gitignore
View file @
7e7f14a3
...
@@ -26,4 +26,5 @@ pip-log.txt
...
@@ -26,4 +26,5 @@ pip-log.txt
setup.cfg
setup.cfg
MANIFEST.in
MANIFEST.in
setup.py
pyproject.lock
pyproject.lock
.travis.yml
View file @
7e7f14a3
...
@@ -4,7 +4,7 @@ python:
...
@@ -4,7 +4,7 @@ python:
-
"
3.6"
-
"
3.6"
install
:
install
:
-
pip install
-e .
-
pip install
poetry
-
poetry install
-
poetry install
script
:
pytest -q tests/
script
:
pytest -q tests/
setup.py
deleted
100644 → 0
View file @
2f129317
import
os
from
setuptools
import
setup
,
find_packages
def
get_version
():
basedir
=
os
.
path
.
dirname
(
__file__
)
with
open
(
os
.
path
.
join
(
basedir
,
'poetry/__version__.py'
))
as
f
:
variables
=
{}
exec
(
f
.
read
(),
variables
)
version
=
variables
.
get
(
'__version__'
)
if
version
:
return
version
raise
RuntimeError
(
'No version info found.'
)
__version__
=
get_version
()
packages
=
[
'poetry'
]
for
pkg
in
find_packages
(
'poetry'
):
packages
.
append
(
'poetry.'
+
pkg
)
kwargs
=
dict
(
name
=
'poetry'
,
license
=
'MIT'
,
version
=
__version__
,
description
=
'Python dependency management and packaging made easy.'
,
long_description
=
open
(
'README.rst'
)
.
read
(),
author
=
'Sébastien Eustace'
,
author_email
=
'sebastien@eustace.io'
,
url
=
'https://github.com/sdispater/poetry'
,
packages
=
packages
,
python_requires
=
'>=3.6.0'
,
install_requires
=
[
'cleo>=0.6.1,<0.7.0'
,
'requests>=2.18.0,<3.0.0'
,
'toml>=0.9.4,<0.10.0'
,
'cachy>=0.1.0,<0.2.0'
,
'pip-tools>=1.11.0,<2.0.0'
,
'requests-toolbelt>=^0.8.0,<0.9.0'
,
],
include_package_data
=
True
,
tests_require
=
[
'pytest>=3.4.0,<3.5.0'
],
classifiers
=
[
'Intended Audience :: Developers'
,
'Operating System :: OS Independent'
,
'Programming Language :: Python'
,
'Programming Language :: Python :: 3.6'
,
'Programming Language :: Python :: Implementation :: CPython'
,
],
entry_points
=
{
'console_scripts'
:
[
'poetry = poetry:console.run'
]
}
)
setup
(
**
kwargs
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment