-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·45 lines (39 loc) · 1.28 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import os
import os.path
from setuptools import setup, find_packages
from ncrc.version import version_str
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name = "ncrc",
version = version_str,
author = "Jason Miller",
author_email = "[email protected]",
description = "Helper script to facilitate access to secure Conda channels",
long_description = read("README.md"),
license = "BSD-3-Clause",
keywords = "RSA SecurID token MFA 2FA channel",
url = "https://github.com/idaholab/ncrc-client",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering',
],
# files
packages = find_packages(),
entry_points = {
'console_scripts': [
'ncrc=ncrc.__main__:main',
],
},
install_requires = [],
package_data = {'': ['LICENSE.txt']},
include_package_data = True,
)