Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
The Universal Packaging Tool
upt
Commits
9fc9efc2
Commit
9fc9efc2
authored
Mar 11, 2018
by
Cyril Roelandt
Browse files
Use setup.cfg.
parent
50a43613
Changes
5
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
9fc9efc2
...
...
@@ -7,6 +7,9 @@ Based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
### Fixed
- upt.licenses.License: add __eq__ so that comparisons do not fail
### Changed
- Use setup.cfg
## [0.2.1] - 2018-03-04
### Added
- upt.licenses: Add the OpenSSL license
...
...
MANIFEST.in
View file @
9fc9efc2
include CHANGELOG
include LICENSE
include README.md
include requirements.txt
include tox.ini
requirements.txt
deleted
100644 → 0
View file @
50a43613
spdx_lookup
setup.cfg
0 → 100644
View file @
9fc9efc2
[metadata]
name = upt
version = 0.2.2
description = Package software from any package manager to any distribution
long_description = file: README.md
author = Cyril Roelandt
author_email = tipecaml@gmail.com
url = https://framagit.org/upt/upt
requires_python = >= 3.6
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3 :: Only
[options]
packages = find:
install_requires =
spdx_lookup
[options.entry_points]
console_scripts =
upt = upt.upt:main
setup.py
View file @
9fc9efc2
# Copyright 2018 Cyril Roelandt
#
# Licensed under the 3-clause BSD license. See the LICENSE file.
from
os
import
path
from
setuptools
import
setup
,
find_packages
from
setuptools
import
setup
here
=
path
.
abspath
(
path
.
dirname
(
__file__
))
with
open
(
path
.
join
(
here
,
'README.md'
),
encoding
=
'utf-8'
)
as
f
:
long_description
=
f
.
read
()
def
_install_reqs
():
with
open
(
'requirements.txt'
)
as
f
:
return
f
.
read
().
split
(
'
\n
'
)
setup
(
name
=
'upt'
,
author
=
'Cyril Roelandt'
,
author_email
=
'tipecaml@gmail.com'
,
url
=
'https://framagit.org/upt/upt'
,
version
=
'0.2.2'
,
description
=
'Package software from any package manager to any distribution'
,
long_description
=
long_description
,
classifiers
=
[
'Development Status :: 3 - Alpha'
,
'Intended Audience :: Developers'
,
'License :: OSI Approved :: BSD License'
,
'Programming Language :: Python :: 3'
,
'Programming Language :: Python :: 3.6'
,
'Programming Language :: Python :: 3 :: Only'
,
],
install_requires
=
_install_reqs
(),
packages
=
find_packages
(),
entry_points
=
{
'console_scripts'
:
[
'upt = upt.upt:main'
],
},
)
setup
()
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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