-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
62 additions
and
50 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[build-system] | ||
requires = ["setuptools>=42", "wheel", "setuptools_scm[toml]>=3.4.3"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools_scm] |
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,53 @@ | ||
[metadata] | ||
name = securesystemslib | ||
author = https://www.updateframework.com | ||
author_email = [email protected] | ||
license = MIT | ||
description = A library that provides cryptographic and general-purpose routines for Secure Systems Lab projects at NYU | ||
keywords = | ||
cryptography, | ||
keys, | ||
signatures, | ||
rsa, | ||
ed25519, | ||
ecdsa | ||
url = https://github.com/secure-systems-lab/securesystemslib | ||
long_description = file: README.rst | ||
long_description_content_type = text/x-rst | ||
classifiers = | ||
Development Status :: 4 - Beta | ||
Intended Audience :: Developers | ||
License :: OSI Approved :: MIT License | ||
Natural Language :: English | ||
Operating System :: POSIX | ||
Operating System :: POSIX :: Linux | ||
Operating System :: MacOS :: MacOS X | ||
Operating System :: Microsoft :: Windows | ||
Programming Language :: Python | ||
Programming Language :: Python :: 2 | ||
Programming Language :: Python :: 2.7 | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.5 | ||
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: Implementation :: CPython | ||
Topic :: Security | ||
Topic :: Software Development | ||
|
||
[options] | ||
packages = find: | ||
install_requires = | ||
six>=1.11.0 | ||
subprocess32; python_version < "3" | ||
python-dateutil>=2.8.0 | ||
tests_require = mock; python_version < "3.3" | ||
setup_requires = setuptools>=42; wheel; setuptools_scm[toml]>=3.4.3 | ||
|
||
[options.packages.find] | ||
exclude = tests; debian | ||
|
||
[options.extras_require] | ||
colors = colorama>=0.3.9 | ||
crypto = cryptography>=2.6 | ||
pynacl = pynacl>1.2.0 |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#! /usr/bin/env python | ||
#! /usr/bin/env python3 | ||
|
||
""" | ||
<Program Name> | ||
|
@@ -60,52 +60,6 @@ | |
""" | ||
|
||
from setuptools import setup | ||
from setuptools import find_packages | ||
|
||
|
||
with open('README.rst') as file_object: | ||
long_description = file_object.read() | ||
|
||
setup( | ||
name = 'securesystemslib', | ||
version = '0.15.0', | ||
description = 'A library that provides cryptographic and general-purpose' | ||
' routines for Secure Systems Lab projects at NYU', | ||
license = 'MIT', | ||
long_description = long_description, | ||
long_description_content_type = 'text/x-rst', | ||
author = 'https://www.updateframework.com', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/secure-systems-lab/securesystemslib', | ||
keywords = 'cryptography, keys, signatures, rsa, ed25519, ecdsa', | ||
classifiers = [ | ||
'Development Status :: 4 - Beta', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Natural Language :: English', | ||
'Operating System :: POSIX', | ||
'Operating System :: POSIX :: Linux', | ||
'Operating System :: MacOS :: MacOS X', | ||
'Operating System :: Microsoft :: Windows', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: Implementation :: CPython', | ||
'Topic :: Security', | ||
'Topic :: Software Development' | ||
], | ||
install_requires = ['six>=1.11.0', 'subprocess32; python_version < "3"', | ||
'python-dateutil>=2.8.0'], | ||
extras_require = { | ||
'colors': ['colorama>=0.3.9'], | ||
'crypto': ['cryptography>=2.6'], | ||
'pynacl': ['pynacl>1.2.0']}, | ||
tests_require = 'mock; python_version < "3.3"', | ||
packages = find_packages(exclude=['tests', 'debian']), | ||
scripts = [] | ||
) | ||
|
||
if __name__ == "__main__": | ||
setup() |