|
1 |
| -#! /usr/bin/env python |
| 1 | +#! /usr/bin/env python3 |
2 | 2 |
|
3 | 3 | """
|
4 | 4 | <Program Name>
|
|
60 | 60 | """
|
61 | 61 |
|
62 | 62 | from setuptools import setup
|
63 |
| -from setuptools import find_packages |
64 |
| - |
65 |
| - |
66 |
| -with open('README.rst') as file_object: |
67 |
| - long_description = file_object.read() |
68 |
| - |
69 |
| -setup( |
70 |
| - name = 'securesystemslib', |
71 |
| - version = '0.18.0', |
72 |
| - description = 'A library that provides cryptographic and general-purpose' |
73 |
| - ' routines for Secure Systems Lab projects at NYU', |
74 |
| - license = 'MIT', |
75 |
| - long_description = long_description, |
76 |
| - long_description_content_type = 'text/x-rst', |
77 |
| - author = 'https://www.updateframework.com', |
78 |
| - author_email = '[email protected]', |
79 |
| - url = 'https://github.com/secure-systems-lab/securesystemslib', |
80 |
| - keywords = 'cryptography, keys, signatures, rsa, ed25519, ecdsa', |
81 |
| - classifiers = [ |
82 |
| - 'Development Status :: 4 - Beta', |
83 |
| - 'Intended Audience :: Developers', |
84 |
| - 'License :: OSI Approved :: MIT License', |
85 |
| - 'Natural Language :: English', |
86 |
| - 'Operating System :: POSIX', |
87 |
| - 'Operating System :: POSIX :: Linux', |
88 |
| - 'Operating System :: MacOS :: MacOS X', |
89 |
| - 'Operating System :: Microsoft :: Windows', |
90 |
| - 'Programming Language :: Python', |
91 |
| - 'Programming Language :: Python :: 2', |
92 |
| - 'Programming Language :: Python :: 2.7', |
93 |
| - 'Programming Language :: Python :: 3', |
94 |
| - 'Programming Language :: Python :: 3.6', |
95 |
| - 'Programming Language :: Python :: 3.7', |
96 |
| - 'Programming Language :: Python :: 3.8', |
97 |
| - 'Programming Language :: Python :: 3.9', |
98 |
| - 'Programming Language :: Python :: Implementation :: CPython', |
99 |
| - 'Topic :: Security', |
100 |
| - 'Topic :: Software Development' |
101 |
| - ], |
102 |
| - project_urls = { |
103 |
| - 'Source': 'https://github.com/secure-systems-lab/securesystemslib', |
104 |
| - 'Issues': 'https://github.com/secure-systems-lab/securesystemslib/issues', |
105 |
| - }, |
106 |
| - python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", |
107 |
| - install_requires = ['six>=1.11.0', 'subprocess32; python_version < "3"'], |
108 |
| - extras_require = { |
109 |
| - 'colors': ['colorama>=0.3.9'], |
110 |
| - 'crypto': ['cryptography>=2.6'], |
111 |
| - 'pynacl': ['pynacl>1.2.0']}, |
112 |
| - tests_require = 'mock; python_version < "3.3"', |
113 |
| - packages = find_packages(exclude=['tests', 'debian']), |
114 |
| - scripts = [] |
115 |
| -) |
| 63 | + |
| 64 | +if __name__ == "__main__": |
| 65 | + setup() |
0 commit comments